SkipAds
This clicks SkipAds button, removes Ad-banners for you
Was ist SkipAds?
SkipAds ist eine Chrome-Erweiterung, die von Edwin entwickelt wurde, und ihr Hauptmerkmal ist "This clicks SkipAds button, removes Ad-banners for you".
Erweiterungsscreenshots
SkipAds-Erweiterungs-CRX-Datei herunterladen
Laden Sie SkipAds-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
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.
Grundlegende Informationen zur Erweiterung
Name | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
Offizielle URL | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
Beschreibung | This clicks SkipAds button, removes Ad-banners for you |
Dateigröße | 9.99 KB |
Installationsanzahl | 159 |
Aktuelle Version | 2.0 |
Letztes Update | 2022-06-27 |
Veröffentlichungsdatum | 2020-06-19 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Edwin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |