AdSkipper

This extension will skip youtube ads.

Was ist AdSkipper?

AdSkipper ist eine Chrome-Erweiterung, die von Abhishek Meharia entwickelt wurde, und ihr Hauptmerkmal ist "This extension will skip youtube ads.".

Erweiterungsscreenshots

screenshot

AdSkipper-Erweiterungs-CRX-Datei herunterladen

Laden Sie AdSkipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™.

Automatically clicks 'Skip Ad' buttons for you.

It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or 
if you are bit lazy to press that button.                    

Grundlegende Informationen zur Erweiterung

Name AdSkipper AdSkipper
ID paeoelngbckenlidinleldbemhkdiphi
Offizielle URL https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi
Beschreibung This extension will skip youtube ads.
Dateigröße 59.06 KB
Installationsanzahl 2,555
Aktuelle Version 0.7
Letztes Update 2021-06-27
Veröffentlichungsdatum 2019-08-14
Bewertung 4.50/5 Insgesamt 8 Bewertungen
Entwickler Abhishek Meharia
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://abhim.in
Hilfeseite URL https://abhim.in
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AdSkipper",
    "description": "This extension will skip youtube ads.",
    "version": "0.7",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            },
            "description": "Switches between play and pause state.",
            "name": "Play pause shortcut command",
            "global": true
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "skip.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}