SkipAds

This clicks SkipAds button, removes Ad-banners for you

Cos'è SkipAds?

SkipAds è un'estensione di Chrome sviluppata da Edwin, e la sua funzione principale è "This clicks SkipAds button, removes Ad-banners for you".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SkipAds

Scarica i file di estensione SkipAds in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
URL Ufficiale https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
Descrizione This clicks SkipAds button, removes Ad-banners for you
Dimensione del File 9.99 KB
Conteggio Installazioni 159
Versione Corrente 2.0
Ultimo Aggiornamento 2022-06-27
Data di Pubblicazione 2020-06-19
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Edwin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}