Word Blocker
Blocks passages on webpages that include a word the user has muted.
Vad är Word Blocker?
Word Blocker är en Chrome-tillägg utvecklad av pyran, och dess huvudfunktion är "Blocks passages on webpages that include a word the user has muted.".
Tilläggsskärmbilder
Ladda ner Word Blocker-förlängningens CRX-fil
Ladda ner Word Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
Officiell webbadress | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
Beskrivning | Blocks passages on webpages that include a word the user has muted. |
Filstorlek | 33.34 KB |
Antal Installationer | 852 |
Aktuell Version | 0.1.0 |
Senast Uppdaterad | 2021-01-18 |
Publiceringsdatum | 2021-01-18 |
Betyg | 3.08/5 Totalt 12 Betyg |
Utvecklare | pyran |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } |