SkipAds
This clicks SkipAds button, removes Ad-banners for you
Qu'est-ce que SkipAds ?
SkipAds est une extension Chrome développée par Edwin, et sa fonction principale est "This clicks SkipAds button, removes Ad-banners for you".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SkipAds
Téléchargez les fichiers d'extension SkipAds au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
URL Officiel | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
Description | This clicks SkipAds button, removes Ad-banners for you |
Taille du Fichier | 9.99 KB |
Nombre d'Installations | 159 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2022-06-27 |
Date de Publication | 2020-06-19 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Edwin |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |