many times while listening to class or attending any discussion
we come across situations where you feel it would have been awesome if the slides shown in the session were converted into notes.
our project solves this problem.
we have made an extension that gives users the ability to document the meet and get the document in the form of a pdf
capture.visible.tab
is used to capture the screenshot of the present tabactive tabs
and<all_urls>
permissionfound some references where on how to add permissions to
manifest.json
filepopup.js
andchrome. runtime.onclick()
can't run at the same timepopup.js
was important for the UI part of the extensionchrome,runtime,onclick
was required to runcapture.visible.tab
with all the permissions, without thatcapture.visible.tab
does not run without the tabs permission , which was only possible if it was enclosed bychrome.runtime.onclick
chrome.runtime.onclick was replaced by other function , which runs
capture.visible.tab
couldn't understand the reason , but downloading the recorded pdf was not possible
made another website that retrieves the PDF . now after recording use has to go to the website and download the PDF
Technologies used
Discussion