SkipAds

This clicks SkipAds button, removes Ad-banners for you

Wat is SkipAds?

SkipAds is een Chrome-extensie ontwikkeld door Edwin, en de belangrijkste functie is "This clicks SkipAds button, removes Ad-banners for you".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SkipAds

Download SkipAds-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension automatically clicks Skip Ad button on youtube videos.  It also removes the Ad-banners that appear at the bottom of the video. 

You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.                    

Basisinformatie over de Extensie

Naam SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
Officiële URL https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
Beschrijving This clicks SkipAds button, removes Ad-banners for you
Bestandsgrootte 9.99 KB
Aantal Installaties 159
Huidige Versie 2.0
Laatst Bijgewerkt 2022-06-27
Publicatiedatum 2020-06-19
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Edwin
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipAds",
    "version": "2.0",
    "description": "This clicks SkipAds button, removes Ad-banners for you ",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "persistent": false
    },
    "action": {
        "default_icon": {
            "16": "images\/get_started16.png",
            "32": "images\/get_started32.png",
            "48": "images\/get_started48.png",
            "128": "images\/get_started128.png"
        }
    },
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "skipAds.js"
            ]
        }
    ],
    "manifest_version": 3
}