YouTube Watch Thumbnails
Display a thumbnail of the video next to the channel icon on the YouTube video playback page.
YouTube Watch Thumbnailsとは何ですか?
YouTube Watch Thumbnailsはmosunsetによって開発されたChromeの拡張機能で、その主な機能は「Display a thumbnail of the video next to the channel icon on the YouTube video playback page.」です。
拡張機能のスクリーンショット
YouTube Watch Thumbnails拡張機能のCRXファイルをダウンロード
YouTube Watch Thumbnails拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Click once on the extension icon and the thumbnail image hops up.
Clicking on an image opens the largest thumbnail image in a new tab. 拡張機能の基本情報
| 名前 | |
| ID | aobeafpjgdgakpagffmlkfeognaiigci |
| 公式URL | https://chromewebstore.google.com/detail/youtube-watch-thumbnails/aobeafpjgdgakpagffmlkfeognaiigci |
| 説明 | Display a thumbnail of the video next to the channel icon on the YouTube video playback page. |
| ファイルサイズ | 113 KB |
| インストール数 | 4,804 |
| 現在のバージョン | 3.3.1 |
| 最終更新日 | 2023-09-02 |
| 公開日 | 2022-09-13 |
| 評価 | 5.00/5 合計 7 レビュー |
| 開発者 | mosunset |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | id,en,fr,es,zh-CN,zh-TW,ja,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_Name__",
"description": "__MSG_Description__",
"version": "3.3.1",
"default_locale": "en",
"icons": {
"512": "img\/yicon.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "img\/yicon.png"
},
"permissions": [
"tabs",
"storage"
],
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"js\/jquery-3.6.0.min.js",
"js\/ycontent_script.js"
],
"css": [
"css\/ycontent_script.css"
],
"all_frames": true
}
]
} | |