Video ads skipper
Save time while browsing the internet and get rid of tiresome ads!
Apa itu Video ads skipper?
Video ads skipper adalah ekstensi Chrome yang dikembangkan oleh admin, dan fitur utamanya adalah "Save time while browsing the internet and get rid of tiresome ads!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Video ads skipper
Unduh file ekstensi Video ads skipper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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!
Informasi Dasar Ekstensi
Nama | |
ID | gdoohnigblfkgnoidfndpghlohkanpfd |
URL Resmi | https://chrome.google.com/webstore/detail/video-ads-skipper/gdoohnigblfkgnoidfndpghlohkanpfd |
Deskripsi | Save time while browsing the internet and get rid of tiresome ads! |
Ukuran File | 55.48 KB |
Jumlah Instalasi | 631 |
Versi Saat Ini | 2.2.2 |
Terakhir Diperbarui | 2022-11-08 |
Tanggal Publikasi | 2022-11-08 |
Pengembang | admin |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |