Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Wat is Video ads skipper?
Video ads skipper is een Chrome-extensie ontwikkeld door admin, en de belangrijkste functie is "Save time while browsing the internet and get rid of tiresome ads!".
Extensie Screenshots
Download het CRX-bestand van de extensie Video ads skipper
Download Video ads skipper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
Officiële URL | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
Beschrijving | Save time while browsing the internet and get rid of tiresome ads! |
Bestandsgrootte | 55.48 KB |
Aantal Installaties | 631 |
Huidige Versie | 2.2.2 |
Laatst Bijgewerkt | 2022-11-08 |
Publicatiedatum | 2022-11-08 |
Ontwikkelaar | admin |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |