YouTube Tab Switch

No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing

YouTube Tab Switch क्या है?

YouTube Tab Switch seungguini द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing"।

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

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

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

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

                        No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that one (and only one) video is always playing! Ever had to constantly switch between multiple YouTube video tabs when pausing a tutorial to play some music while taking notes? Ever open a new video tabs to watch later, only to lose track and have a cacophony of audio? This Extension helps you focus on the video YOU want to watch with two core functions:
1. When you play a YouTube video, all other YouTube videos on different tabs and windows are paused.
2. When you pause a video, the most-recently played video plays automatically in the background, allowing you to have a constant stream of sound                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Tab Switch YouTube Tab Switch
ID ffbfmnpnnpioeahopelpofkgdnoglkom
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom
विवरण No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing
फ़ाइल का आकार 694 KB
स्थापना संख्या 32
वर्तमान संस्करण 1.0
अंतिम अपडेट 2020-01-28
प्रकाशन तिथि 2020-01-27
रेटिंग 3.33/5 कुल 3 रेटिंग्स
डेवलपर seungguini
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://github.com/seungguini/youtube-tab-switch
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Tab Switch",
    "description": "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing",
    "version": "1.0",
    "icons": {
        "128": "img\/icon128.png",
        "32": "img\/icon32.png",
        "16": "img\/icon16.png"
    },
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Tab Switch"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js",
                "lib\/jquery-3.4.1.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ]
}