SkipAds

This clicks SkipAds button, removes Ad-banners for you

SkipAds क्या है?

SkipAds Edwin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This clicks SkipAds button, removes Ad-banners for you"।

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

screenshot

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

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

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

                        This extension automatically clicks Skip Ad button on youtube videos.  It also removes the Ad-banners that appear at the bottom of the video. 

You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.                    

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

नाम SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
आधिकारिक URL https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
विवरण This clicks SkipAds button, removes Ad-banners for you
फ़ाइल का आकार 9.99 KB
स्थापना संख्या 159
वर्तमान संस्करण 2.0
अंतिम अपडेट 2022-06-27
प्रकाशन तिथि 2020-06-19
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Edwin
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipAds",
    "version": "2.0",
    "description": "This clicks SkipAds button, removes Ad-banners for you ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "persistent": false
    },
    "action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "skipAds.js"
            ]
        }
    ],
    "manifest_version": 3
}