YouTube NoAds!

The add-on blocks ads presented in videos on youtube.

YouTube NoAds! क्या है?

YouTube NoAds! info द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The add-on blocks ads presented in videos on youtube."।

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

screenshot

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

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

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

                        The add-on blocks ads presented in videos on youtube. The ad blocker consists in automatically selecting the 'skip ads' button when it becomes active.                    

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

नाम YouTube NoAds! YouTube NoAds!
ID plohhfnpbopkgjhbaljjepioomefkaog
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-noads/plohhfnpbopkgjhbaljjepioomefkaog
विवरण The add-on blocks ads presented in videos on youtube.
फ़ाइल का आकार 166 KB
स्थापना संख्या 761
वर्तमान संस्करण 2.0.0
अंतिम अपडेट 2022-11-30
प्रकाशन तिथि 2022-11-30
रेटिंग 4.50/5 कुल 2 रेटिंग्स
डेवलपर info
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube NoAds!",
    "description": "The add-on blocks ads presented in videos on youtube.",
    "manifest_version": 3,
    "version": "2.0.0",
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_scripts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "alarms",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "128": "resource\/youtube(3).png"
    }
}