Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Was ist Video ads skipper?
Video ads skipper ist eine Chrome-Erweiterung, die von admin entwickelt wurde, und ihr Hauptmerkmal ist "Save time while browsing the internet and get rid of tiresome ads!".
Erweiterungsscreenshots
Video ads skipper-Erweiterungs-CRX-Datei herunterladen
Laden Sie Video ads skipper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
Offizielle URL | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
Beschreibung | Save time while browsing the internet and get rid of tiresome ads! |
Dateigröße | 55.48 KB |
Installationsanzahl | 631 |
Aktuelle Version | 2.2.2 |
Letztes Update | 2022-11-08 |
Veröffentlichungsdatum | 2022-11-08 |
Entwickler | admin |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |