Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Qu'est-ce que Video ads skipper ?
Video ads skipper est une extension Chrome développée par admin, et sa fonction principale est "Save time while browsing the internet and get rid of tiresome ads!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Video ads skipper
Téléchargez les fichiers d'extension Video ads skipper 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
The add-on allows you to skip ads while browsing youtube. After the first 5 seconds the ad will be skipped and you can enjoy your favorite movie or music clip. Don't waste time on unnecessary ads, focus on the content, use the saved time for yourself!
Informations de Base sur l'Extension
Nom | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
URL Officiel | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
Description | Save time while browsing the internet and get rid of tiresome ads! |
Taille du Fichier | 55.48 KB |
Nombre d'Installations | 631 |
Version Actuelle | 2.2.2 |
Dernière Mise à Jour | 2022-11-08 |
Date de Publication | 2022-11-08 |
Développeur | admin |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video ads skipper", "short_name": "Video ads skipper", "description": "Save time while browsing the internet and get rid of tiresome ads!", "manifest_version": 3, "version": "2.2.2", "background": { "service_worker": "source\/worker.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "source\/content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "source\/content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "resource\/logo128.png" } } |