SkipAds
This clicks SkipAds button, removes Ad-banners for you
Apa itu SkipAds?
SkipAds adalah ekstensi Chrome yang dikembangkan oleh Edwin, dan fitur utamanya adalah "This clicks SkipAds button, removes Ad-banners for you".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi SkipAds
Unduh file ekstensi SkipAds 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
This extension automatically clicks Skip Ad button on youtube videos. It also removes the Ad-banners that appear at the bottom of the video. You just have to install this Extension, and watch Youtube without pressing on Skip Ad button. This plugin works exclusively on YouTube videos.
Informasi Dasar Ekstensi
Nama | SkipAds |
ID | gccoifaifhhancbpbngckolbphodjiea |
URL Resmi | https://chromewebstore.google.com/detail/skipads/gccoifaifhhancbpbngckolbphodjiea |
Deskripsi | This clicks SkipAds button, removes Ad-banners for you |
Ukuran File | 9.99 KB |
Jumlah Instalasi | 159 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2022-06-27 |
Tanggal Publikasi | 2020-06-19 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | Edwin |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SkipAds", "version": "2.0", "description": "This clicks SkipAds button, removes Ad-banners for you ", "permissions": [ "activeTab", "declarativeContent", "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js", "persistent": false }, "action": { "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" } }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "skipAds.js" ] } ], "manifest_version": 3 } |