Word Blocker
Blocks passages on webpages that include a word the user has muted.
Word Blocker क्या है?
Word Blocker pyran द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks passages on webpages that include a word the user has muted."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Word Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Word Blocker |
ID | ebbplnackfijdgaocobghipflkadnejp |
आधिकारिक URL | https://chromewebstore.google.com/detail/word-blocker/ebbplnackfijdgaocobghipflkadnejp |
विवरण | Blocks passages on webpages that include a word the user has muted. |
फ़ाइल का आकार | 33.34 KB |
स्थापना संख्या | 852 |
वर्तमान संस्करण | 0.1.0 |
अंतिम अपडेट | 2021-01-18 |
प्रकाशन तिथि | 2021-01-18 |
रेटिंग | 3.08/5 कुल 12 रेटिंग्स |
डेवलपर | pyran |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" ] } |