YouTube Skip Ads
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Qu'est-ce que YouTube Skip Ads ?
YouTube Skip Ads est une extension Chrome développée par admin, et sa fonction principale est "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Skip Ads
Téléchargez les fichiers d'extension YouTube Skip Ads 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
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'
Informations de Base sur l'Extension
Nom | |
ID | jnhhfkebfgdllkmohmfhdmhkfooolbmb |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Description | YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button' |
Taille du Fichier | 12.73 KB |
Nombre d'Installations | 3,053 |
Version Actuelle | 1.0.6 |
Dernière Mise à Jour | 2022-10-31 |
Date de Publication | 2022-10-31 |
Évaluation | 5.00/5 Total 2 Évaluations |
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": "YouTube Skip Ads", "short_name": "YouTube Skip Ads", "description": "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'", "manifest_version": 3, "version": "1.0.6", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_yt.js" ], "run_at": "document_end", "all_frames": false } ], "permissions": [ "storage", "webRequest" ], "host_permissions": [ "*:\/\/*\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "*:\/\/*\/*" ] } ], "icons": { "128": "logob.png" } } |