YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
YouTube Hotkeysとは何ですか?
YouTube HotkeysはGiovani Silvaによって開発されたChromeの拡張機能で、その主な機能は「Your YouTube Hotkeys for play, pause, play next video and repeat.」です。
拡張機能のスクリーンショット
YouTube Hotkeys拡張機能のCRXファイルをダウンロード
YouTube Hotkeys拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds hotkeys to your youTube page, now you can control the videos you are watching from anywhere, even when you are away from browser! You can also set your video to repeat, check the extension icon to know when your video is in repeating mode or not. Default Keyboard shortcuts: Next Video : Alt+Shift+Period Play/Pause : Alt+Shift+P Previous Video : Alt+Shift+Comma Repeat Video : Alt+Shift+R To configure go to chrome://extensions/configureCommands
拡張機能の基本情報
名前 | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
公式URL | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
説明 | Your YouTube Hotkeys for play, pause, play next video and repeat. |
ファイルサイズ | 75.94 KB |
インストール数 | 785 |
現在のバージョン | 1.1 |
最終更新日 | 2018-04-06 |
公開日 | 2018-04-06 |
評価 | 4.53/5 合計 15 レビュー |
開発者 | Giovani Silva |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Hotkeys", "description": "Your YouTube Hotkeys for play, pause, play next video and repeat.", "version": "1.1", "incognito": "split", "background": { "persistent": false, "scripts": [ "background.js" ] }, "commands": { "next": { "description": "Next track", "suggested_key": "Alt+Shift+Period" }, "play-pause": { "description": "Play\/Pause", "suggested_key": "Alt+Shift+P" }, "previous": { "description": "Previous track", "suggested_key": "Alt+Shift+Comma" }, "repeat": { "description": "Repeat", "suggested_key": "Alt+Shift+R" } }, "browser_action": { "default_icon": "assets\/icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "script.js", "content.js" ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "background", "contentSettings" ], "icons": { "16": "assets\/icon.png", "48": "assets\/icon.png", "128": "assets\/icon.png" } } |