Better Shorts Player
Adds video player controls to YouTube Shorts
Better Shorts Playerとは何ですか?
Better Shorts PlayerはJoubert Van Zylによって開発されたChromeの拡張機能で、その主な機能は「Adds video player controls to YouTube Shorts」です。
拡張機能のスクリーンショット
Better Shorts Player拡張機能のCRXファイルをダウンロード
Better Shorts Player拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Better Shorts Player adds the ability to scrub through a shorts video, play, pause, adjust volume and mute the video. The controls fade away when not being hovered on as to not be intrusive to the video.
拡張機能の基本情報
名前 | Better Shorts Player |
ID | bagcbccbbigjaicnmlcllplhjdfjeimn |
公式URL | https://chromewebstore.google.com/detail/better-shorts-player/bagcbccbbigjaicnmlcllplhjdfjeimn |
説明 | Adds video player controls to YouTube Shorts |
ファイルサイズ | 18.21 KB |
インストール数 | 802 |
現在のバージョン | 1.0.0 |
最終更新日 | 2023-03-06 |
公開日 | 2023-03-06 |
評価 | 4.77/5 合計 13 レビュー |
開発者 | Joubert Van Zyl |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Shorts Player", "description": "Adds video player controls to YouTube Shorts", "manifest_version": 3, "version": "1.0.0", "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "assets\/pause.png", "assets\/play.png", "assets\/muted.png", "assets\/unmuted.png" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "styles.css" ], "run_at": "document_end" } ], "permissions": [ "tabs" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |