YT Remote

A chrome extension to control your YouTube tabs / playback from any website / tabs.

YT Remote क्या है?

YT Remote shraey96 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to control your YouTube tabs / playback from any website / tabs."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YT Remote एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 YT Remote
ID jodpnmokilccncpcgfjpmkhengjhligo
आधिकारिक URL 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
}