Youtube New Layout

Gives you access to the new Youtube Layout.

Youtube New Layout क्या है?

Youtube New Layout jesseizeboud द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Gives you access to the new Youtube Layout."।

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

screenshot
screenshot

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

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

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

                        Places a cookie in your browser to get access to the new Youtube New Layout.
Including Dark Mode                    

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

नाम Youtube New Layout Youtube New Layout
ID hbmeplfnmccnihlidhggppjkefakmepd
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-new-layout/hbmeplfnmccnihlidhggppjkefakmepd
विवरण Gives you access to the new Youtube Layout.
फ़ाइल का आकार 92.49 KB
स्थापना संख्या 496
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-04-23
प्रकाशन तिथि 2017-04-23
रेटिंग 4.00/5 कुल 4 रेटिंग्स
डेवलपर jesseizeboud
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube New Layout",
    "version": "1.0",
    "description": "Gives you access to the new Youtube Layout.",
    "browser_action": {
        "default_icon": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        },
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/youtube.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "manifest_version": 2
}