Awesome ScreenShot YouTube
Take a screenshot of any YouTube video with one click.
What is Awesome ScreenShot YouTube?
Awesome ScreenShot YouTube is a Chrome extension developed by Magic Dev, and its main feature is "Take a screenshot of any YouTube video with one click.".
Extension Screenshots
Download Awesome ScreenShot YouTube Extension CRX File
Download Awesome ScreenShot YouTube 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
Adds a “Screenshot” button to the YouTube video player which saves a screenshot of the currently playing video as a file. Click on the "o" button to take a screenshot.
Extension Basic Information
Name | Awesome ScreenShot YouTube |
ID | igpogmdknpofhifbnhgeniljfoebfene |
Official URL | https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene |
Description | Take a screenshot of any YouTube video with one click. |
File Size | 18.79 KB |
Installation Count | 35 |
Current Version | 1.0.3 |
Last Updated | 2022-02-05 |
Publish Date | 2021-11-26 |
Developer | Magic Dev |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Awesome ScreenShot YouTube", "version": "1.0.3", "description": "Take a screenshot of any YouTube video with one click.", "icons": { "128": "\/images\/128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/*" ], "permissions": [ "https:\/\/www.youtube.com\/*", "webNavigation" ] } |