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 |
| 公式URL | 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 |
| Eメール | [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"
}
} | |