YouTube Playback Position with Side Buttons
When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
YouTube Playback Position with Side Buttonsとは何ですか?
YouTube Playback Position with Side Buttonsはsanitysignによって開発されたChromeの拡張機能で、その主な機能は「When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video」です。
拡張機能のスクリーンショット
YouTube Playback Position with Side Buttons拡張機能のCRXファイルをダウンロード
YouTube Playback Position with Side Buttons拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video. Extension’s popup allows to change skip time.
拡張機能の基本情報
名前 | YouTube Playback Position with Side Buttons |
ID | gdgfjcfcfkhoiebkflodhommhllbjnjd |
公式URL | https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd |
説明 | When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video |
ファイルサイズ | 21.13 KB |
インストール数 | 97 |
現在のバージョン | 1.0.1 |
最終更新日 | 2022-11-04 |
公開日 | 2022-03-17 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | sanitysign |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://sanitysign.github.io/extensions-privacy-policies |
対応言語 | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ] } ], "event_rules": [ { "event": "declarativeContent.onPageChanged", "actions": [ { "type": "declarativeContent.ShowPageAction" } ], "conditions": [ { "type": "declarativeContent.PageStateMatcher", "pageUrl": { "hostEquals": "www.youtube.com" } } ] } ], "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" } }, "icons": { "16": "img\/mousetube-16.png", "32": "img\/mousetube-32.png", "48": "img\/mousetube-48.png", "128": "img\/mousetube-128.png" }, "default_locale": "en", "externally_connectable": { "ids": [] } } |