YT Skip Ads

This extension attempts to skip the YouTube ads automatically

Τι είναι το YT Skip Ads;

Το YT Skip Ads είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Furqan, και η κύρια λειτουργία του είναι "This extension attempts to skip the YouTube ads automatically".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YT Skip Ads

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

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

                        This extension basically automates two things for you, so you can save yourselves a few seconds of time and avoid mundane tasks:
1. Auto-skips those 5 second ads on YouTube: 
YouTube usually plays ads before the videos, and these ads have a countdown timer of around 5 seconds before the ad can be skipped using the "Skip Ad" button, which only appears after few seconds. This extension tries to skip the ad immediately and automatically for you, even before the ad countdown timer ends. This works when the ad is a "skippable" ad. 
2. Dismisses those annoying overlay ads that appear over the video at the bottom, with a remarkably small button to close them.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YT Skip Ads YT Skip Ads
ID lahknfhfeikbpljolkheigimmcfhplga
Επίσημο URL https://chromewebstore.google.com/detail/yt-skip-ads/lahknfhfeikbpljolkheigimmcfhplga
Περιγραφή This extension attempts to skip the YouTube ads automatically
Μέγεθος Αρχείου 17.31 KB
Αριθμός Εγκαταστάσεων 34
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-09-14
Ημερομηνία Δημοσίευσης 2021-09-14
Προγραμματιστής Furqan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YT Skip Ads",
    "description": "This extension attempts to skip the YouTube ads automatically",
    "version": "1.0",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "YouTube Skip Ads"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "css": [
                "src\/css\/main.css"
            ],
            "js": [
                "src\/js\/dom-watcher.js"
            ],
            "run_at": "document_end"
        }
    ]
}