Word Blocker
Blocks passages on webpages that include a word the user has muted.
Apa itu Word Blocker?
Word Blocker adalah ekstensi Chrome yang dikembangkan oleh pyran, dan fitur utamanya adalah "Blocks passages on webpages that include a word the user has muted.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Word Blocker
Unduh file ekstensi Word Blocker 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
Enter words in the popup, and it will be censored with asterisks. This extension will soon be able to be used for blocking triggers or avoiding spoilers.
Informasi Dasar Ekstensi
Nama | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
URL Resmi | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Deskripsi | Blocks passages on webpages that include a word the user has muted. |
Ukuran File | 33.34 KB |
Jumlah Instalasi | 852 |
Versi Saat Ini | 0.1.0 |
Terakhir Diperbarui | 2021-01-18 |
Tanggal Publikasi | 2021-01-18 |
Penilaian | 3.08/5 Total 12 Penilaian |
Pengembang | pyran |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Word Blocker", "description": "Blocks passages on webpages that include a word the user has muted.", "version": "0.1.0", "manifest_version": 2, "icons": { "128": ".\/monkey_icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "options_page": ".\/options.html", "browser_action": { "default_popup": "popup.html" }, "permissions": [ "storage" ] } |