YT Remote
A chrome extension to control your YouTube tabs / playback from any website / tabs.
什麼是YT Remote?
YT Remote是由shraey96開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension to control your YouTube tabs / playback from any website / tabs.”。
擴展截圖
下載YT Remote擴展crx文件
下載YT Remote擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | YT Remote |
ID | jodpnmokilccncpcgfjpmkhengjhligo |
官方網址 | https://chromewebstore.google.com/detail/yt-remote/jodpnmokilccncpcgfjpmkhengjhligo |
簡介 | A chrome extension to control your YouTube tabs / playback from any website / tabs. |
檔案大小 | 337 KB |
安裝次數 | 949 |
目前版本 | 1.0.6 |
更新時間 | 2020-08-30 |
上架時間 | 2020-02-01 |
評分 | 4.14/5 共 14 次評分 |
開發者 | shraey96 |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |