YoutubeAutoSkip

A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.

YoutubeAutoSkip क्या है?

YoutubeAutoSkip AshleyTyagi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad."।

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

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

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

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

                        Now using manifest V3!
A script to auto-click skips, the icon which is used was made by Pixel Perfect on https://www.flaticon.com/authors/pixel-perfect

An extension with no user-interface which runs in the background and will effectively auto-skip ads on the site youtube.com by either shifting straight to the end of the advertisement or by either automatically pressing the skip button. Disclaimer this will not remove ads on the side of YouTube since it isn't an adblocker it simply auto-clicks skip or either it shifts your progress of watching the ad straight to the end, so you effectively skip it.
Here is the link to the Github repository containing the code: https://github.com/oslohes123/YoutubeAutoSkip                    

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

नाम YoutubeAutoSkip YoutubeAutoSkip
ID jackpdpiimmbmbcpjoabcahggiaindac
आधिकारिक URL https://chromewebstore.google.com/detail/youtubeautoskip/jackpdpiimmbmbcpjoabcahggiaindac
विवरण A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.
फ़ाइल का आकार 5.86 KB
स्थापना संख्या 51
वर्तमान संस्करण 3.0
अंतिम अपडेट 2022-09-26
प्रकाशन तिथि 2020-06-28
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर AshleyTyagi
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YoutubeAutoSkip",
    "version": "3.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "description": "A script to automate the skipping of YouTube ads. Using 2 methods, auto button press and Skipping to the end of a current ad.",
    "icons": {
        "48": "icon.ico"
    }
}