Awesome ScreenShot YouTube
Take a screenshot of any YouTube video with one click.
什麼是Awesome ScreenShot YouTube?
Awesome ScreenShot YouTube是由Magic Dev開發的Chrome擴展程式,該擴展的主要功能是“Take a screenshot of any YouTube video with one click.”。
擴展截圖
下載Awesome ScreenShot YouTube擴展crx文件
下載Awesome ScreenShot YouTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Awesome ScreenShot YouTube |
ID | igpogmdknpofhifbnhgeniljfoebfene |
官方網址 | https://chromewebstore.google.com/detail/awesome-screenshot-youtub/igpogmdknpofhifbnhgeniljfoebfene |
簡介 | Take a screenshot of any YouTube video with one click. |
檔案大小 | 18.79 KB |
安裝次數 | 35 |
目前版本 | 1.0.3 |
更新時間 | 2022-02-05 |
上架時間 | 2021-11-26 |
開發者 | Magic Dev |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |