YouTube Skip Ads
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'
Vad är YouTube Skip Ads?
YouTube Skip Ads är en Chrome-tillägg utvecklad av admin, och dess huvudfunktion är "YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button'".
Tilläggsskärmbilder
Ladda ner YouTube Skip Ads-förlängningens CRX-fil
Ladda ner YouTube Skip Ads-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. This addon auto clicks the 'skip ad button'
Grundläggande Information om Tillägg
Namn | |
ID | jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-skip-ads/jnhhfkebfgdllkmohmfhdmhkfooolbmb |
Beskrivning | YouTube Skip Ads With this extension, YouTube ads will be automatically skipped after 5 seconds. Auto clicks the 'skip ad button' |
Filstorlek | 12.73 KB |
Antal Installationer | 3,053 |
Aktuell Version | 1.0.6 |
Senast Uppdaterad | 2022-10-31 |
Publiceringsdatum | 2022-10-31 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | admin |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |