Youtube Customiser

Add and remove Youtube content panels as you wish.

Youtube Customiser क्या है?

Youtube Customiser Erlend Eelmets द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add and remove Youtube content panels as you wish."।

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

screenshot

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

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

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

                        Add and remove Youtube content panels as you wish. Does the merchandise bar annoy you? Remove it? Do you want to stop spending time on youtube rabbit holes? Disable video suggestions. Do you judge a video too much based on it's numbers? Disable the numbers.                    

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

नाम Youtube Customiser Youtube Customiser
ID jlcpaifegmmdaiafenaeajnkbclgikhp
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-customiser/jlcpaifegmmdaiafenaeajnkbclgikhp
विवरण Add and remove Youtube content panels as you wish.
फ़ाइल का आकार 752 KB
स्थापना संख्या 12
वर्तमान संस्करण 0.0.2
अंतिम अपडेट 2020-11-11
प्रकाशन तिथि 2020-11-11
डेवलपर Erlend Eelmets
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.2",
    "short_name": "Youtube Custom",
    "name": "Youtube Customiser",
    "description": "Add and remove Youtube content panels as you wish.",
    "browser_action": {
        "default_title": "Youtube Customiser",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ]
        }
    ],
    "icons": {
        "22": "img\/icon-22.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}