YouTube Screenshot
Save Take screenshots from YouTube video
What is YouTube Screenshot?
YouTube Screenshot is a Chrome extension developed by info, and its main feature is "Save Take screenshots from YouTube video".
Extension Screenshots
Download YouTube Screenshot Extension CRX File
Download YouTube Screenshot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A small add-on to take screenshots of YouTube videos with one click. - This add-on is completely free to use. - This add-on adds an extra button in the YouTube player to take a screenshot of the video.
Extension Basic Information
Name | |
ID | mdblbmmnmgoglgggphofecocdniamacg |
Official URL | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
Description | Save Take screenshots from YouTube video |
File Size | 164 KB |
Installation Count | 230 |
Current Version | 2.0.0 |
Last Updated | 2022-12-05 |
Publish Date | 2022-12-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | info |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Screenshot", "description": "Save Take screenshots from YouTube video", "manifest_version": 3, "version": "2.0.0", "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "permissions": [ "alarms", "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "options_ui": { "page": "options\/index.html" }, "icons": { "128": "icons\/icon.png" } } |