YT Remote
A chrome extension to control your YouTube tabs / playback from any website / tabs.
Vad är YT Remote?
YT Remote är en Chrome-tillägg utvecklad av shraey96, och dess huvudfunktion är "A chrome extension to control your YouTube tabs / playback from any website / tabs.".
Tilläggsskärmbilder
Ladda ner YT Remote-förlängningens CRX-fil
Ladda ner YT Remote-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
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
Grundläggande Information om Tillägg
Namn | YT Remote |
ID | jodpnmokilccncpcgfjpmkhengjhligo |
Officiell webbadress | https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo |
Beskrivning | A chrome extension to control your YouTube tabs / playback from any website / tabs. |
Filstorlek | 337 KB |
Antal Installationer | 949 |
Aktuell Version | 1.0.6 |
Senast Uppdaterad | 2020-08-30 |
Publiceringsdatum | 2020-02-01 |
Betyg | 4.14/5 Totalt 14 Betyg |
Utvecklare | shraey96 |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } |