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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης YoutubeAutoSkip

Λήψη αρχείων επέκτασης YoutubeAutoSkip σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}