SkipAds

This clicks SkipAds button, removes Ad-banners for you

Hvad er SkipAds?

SkipAds er en Chrome-udvidelse udviklet af Edwin, og dens hovedfunktion er "This clicks SkipAds button, removes Ad-banners for you".

Udvidelsesskærmbilleder

screenshot

Download SkipAds-udvidelses-CRX-fil

Download SkipAds-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn SkipAds SkipAds
ID gccoifaifhhancbpbngckolbphodjiea
Officiel URL https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea
Beskrivelse This clicks SkipAds button, removes Ad-banners for you
Filstørrelse 9.99 KB
Antal Installationer 159
Nuværende Version 2.0
Senest Opdateret 2022-06-27
Udgivelsesdato 2020-06-19
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler Edwin
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}