Youtube Short Controller
Youtube Shorts Controller
Youtube Short Controllerとは何ですか?
Youtube Short Controllerはhttps://misa198.vercel.appによって開発されたChromeの拡張機能で、その主な機能は「Youtube Shorts Controller」です。
拡張機能のスクリーンショット
Youtube Short Controller拡張機能のCRXファイルをダウンロード
Youtube Short Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The extension will add to the Youtube Short player an overlay with video control functions including stop playing, fast forward or rewind the video for a period of time that can be set in the settings popup.
拡張機能の基本情報
名前 | Youtube Short Controller |
ID | fbkgbegeloakaicldjgkamfmpjhlmibi |
公式URL | https://chrome.google.com/webstore/detail/youtube-short-controller/fbkgbegeloakaicldjgkamfmpjhlmibi |
説明 | Youtube Shorts Controller |
ファイルサイズ | 24.95 KB |
インストール数 | 3,214 |
現在のバージョン | 1.0.5 |
最終更新日 | 2022-10-15 |
公開日 | 2022-04-28 |
評価 | 3.94/5 合計 16 レビュー |
開発者 | https://misa198.vercel.app |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/misa198/youtube-shorts-controller |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Youtube Shorts Controller", "version": "1.0.5", "author": "Thanh Vu", "homepage_url": "https:\/\/github.com\/thanhvu1982\/youtube-shorts-controller", "manifest_version": 3, "name": "Youtube Short Controller", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "icons": { "16": "icons\/icon16.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "permissions": [ "storage" ], "action": { "default_icon": "icons\/icon64.png", "default_popup": "popup.html" } } |