Autoskip Youtube Ads

Allows you to autoskip any youtube ad once it is possible

Autoskip Youtube Ads क्या है?

Autoskip Youtube Ads jonkotzonev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to autoskip any youtube ad once it is possible"।

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

screenshot
screenshot

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

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

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

                        This extension will auto skip all the in-video ads that show up in youtube. This is not an AdBlocker it is an Ad Skipper and works only for Youtube videos, allowing you to watch without the need of constantly hitting "Skip ad". To turn it on, you have to install it and enable it. The default action is skip. To stop it - hit the Button that shows the current status and switch it to off. When the status shows in green with the 'ON' label you skipper is working and you can go to every youtube page without worrying for skipping ads. If you want to switch it off, just click again on the status button and it will tun to red with the label 'OFF', you can refresh page and ads will not be Auto-skipped anymore.                    

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

नाम Autoskip Youtube Ads Autoskip Youtube Ads
ID fdhnlmakcifkamoadlpgiemgekddkfjb
आधिकारिक URL https://chromewebstore.google.com/detail/autoskip-youtube-ads/fdhnlmakcifkamoadlpgiemgekddkfjb
विवरण Allows you to autoskip any youtube ad once it is possible
फ़ाइल का आकार 11.05 KB
स्थापना संख्या 56
वर्तमान संस्करण 3.0
अंतिम अपडेट 2023-11-21
प्रकाशन तिथि 2022-07-07
डेवलपर jonkotzonev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autoskip Youtube Ads",
    "description": "Allows you to autoskip any youtube ad once it is possible",
    "icons": {
        "16": "icons8-check-all-stickers-16.png",
        "32": "icons8-check-all-stickers-32.png",
        "128": "icons8-check-all-128.png"
    },
    "version": "3.0",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_title": "Auto Skip Youtube Ads",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/watch?*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}