YouTube Hotkeys
Your YouTube Hotkeys for play, pause, play next video and repeat.
Qu'est-ce que YouTube Hotkeys ?
YouTube Hotkeys est une extension Chrome développée par Giovani Silva, et sa fonction principale est "Your YouTube Hotkeys for play, pause, play next video and repeat.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Hotkeys
Téléchargez les fichiers d'extension YouTube Hotkeys au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | nikecddgokknoehjljdkhkilicpcacmo |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-hotkeys/nikecddgokknoehjljdkhkilicpcacmo |
Description | Your YouTube Hotkeys for play, pause, play next video and repeat. |
Taille du Fichier | 75.94 KB |
Nombre d'Installations | 785 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2018-04-06 |
Date de Publication | 2018-04-06 |
Évaluation | 4.53/5 Total 15 Évaluations |
Développeur | Giovani Silva |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |