YouTube Screenshot
Save Take screenshots from YouTube video
什麼是YouTube Screenshot?
YouTube Screenshot是由info開發的Chrome擴展程式,該擴展的主要功能是“Save Take screenshots from YouTube video”。
擴展截圖
下載YouTube Screenshot擴展crx文件
下載YouTube Screenshot擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | mdblbmmnmgoglgggphofecocdniamacg |
| 官方網址 | https://chrome.google.com/webstore/detail/youtube-screenshot/mdblbmmnmgoglgggphofecocdniamacg |
| 簡介 | Save Take screenshots from YouTube video |
| 檔案大小 | 164 KB |
| 安裝次數 | 230 |
| 目前版本 | 2.0.0 |
| 更新時間 | 2022-12-05 |
| 上架時間 | 2022-12-05 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | info |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
}
} | |