YT Remote
A chrome extension to control your YouTube tabs / playback from any website / tabs.
Qu'est-ce que YT Remote ?
YT Remote est une extension Chrome développée par shraey96, et sa fonction principale est "A chrome extension to control your YouTube tabs / playback from any website / tabs.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YT Remote
Téléchargez les fichiers d'extension YT Remote 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
A simple unique chrome extension to control your YouTube tabs from anywhere in the browser. Seek, Search, Play, Pause YouTube tracks and also skip video ads from anywhere in your browser Control your YouTube tab via the extensions keyboard shortcuts: [SPACE BAR] to play / pause [CTRL + ARROW LEFT] to seek to previous track [CTRL + ARROW RIGHT] to seek to next track
Informations de Base sur l'Extension
Nom | YT Remote |
ID | jodpnmokilccncpcgfjpmkhengjhligo |
URL Officiel | https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo |
Description | A chrome extension to control your YouTube tabs / playback from any website / tabs. |
Taille du Fichier | 337 KB |
Nombre d'Installations | 949 |
Version Actuelle | 1.0.6 |
Dernière Mise à Jour | 2020-08-30 |
Date de Publication | 2020-02-01 |
Évaluation | 4.14/5 Total 14 Évaluations |
Développeur | shraey96 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT Remote", "version": "1.0.6", "short_name": "YT Remote", "description": "A chrome extension to control your YouTube tabs \/ playback from any website \/ tabs.", "browser_action": { "default_popup": "index.html" }, "permissions": [ "storage", "https:\/\/www.youtube.com\/*" ], "background": { "scripts": [ "ytBackgroundScript.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "js": [ "contentScript.js" ] } ], "icons": { "16": "icons-main\/logo_16_c.png", "48": "icons-main\/logo_48_c.png", "128": "icons-main\/logo_128_c.png" }, "manifest_version": 2 } |