YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
Vad är YouTube Hotkeys?
YouTube Hotkeys är en Chrome-tillägg utvecklad av Giovani Silva, och dess huvudfunktion är "Your YouTube Hotkeys for play, pause, play next video and repeat.".
Tilläggsskärmbilder
Ladda ner YouTube Hotkeys-förlängningens CRX-fil
Ladda ner YouTube Hotkeys-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
Beskrivning | Your YouTube Hotkeys for play, pause, play next video and repeat. |
Filstorlek | 75.94 KB |
Antal Installationer | 785 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2018-04-06 |
Publiceringsdatum | 2018-04-06 |
Betyg | 4.53/5 Totalt 15 Betyg |
Utvecklare | Giovani Silva |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |