Youtube Thumbnail Downloader
A chrome extension by Jay Alto
Youtube Thumbnail Downloaderとは何ですか?
Youtube Thumbnail Downloaderはhttps://www.thumbnail.guideによって開発されたChromeの拡張機能で、その主な機能は「A chrome extension by Jay Alto」です。
拡張機能のスクリーンショット
Youtube Thumbnail Downloader拡張機能のCRXファイルをダウンロード
Youtube Thumbnail Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Ever wanted to quickly download a Youtube thumbnail to review or share? Well, now you can in a single click. Copying Video ID's, opening up separate websites, renaming the file, managing plugins takes too much time. The Youtube Thumbnail Downloader lets you download a videos thumbnail in a single click, automatically naming the file with the video title and channel name.
拡張機能の基本情報
名前 | |
ID | neefidmpdnfbfkhfakphalpmdiddbkgh |
公式URL | https://chrome.google.com/webstore/detail/youtube-thumbnail-downloa/neefidmpdnfbfkhfakphalpmdiddbkgh |
説明 | A chrome extension by Jay Alto |
ファイルサイズ | 222 KB |
インストール数 | 2,664 |
現在のバージョン | 0.0.4 |
最終更新日 | 2022-06-25 |
公開日 | 2022-04-14 |
評価 | 4.00/5 合計 12 レビュー |
開発者 | https://www.thumbnail.guide |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension by Jay Alto", "version": "0.0.4", "manifest_version": 3, "name": "Youtube Thumbnail Downloader", "background": { "service_worker": "background.bundle.js" }, "action": { "default_icon": "icon-34.png" }, "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "permissions": [ "tabs", "scripting" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "mail.svg", "twitter.svg", "popup.html", "download-dark.png", "download-light.png", "downloadScript.bundle.js", "showUiScript.bundle.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |