Word Blocker
Blocks passages on webpages that include a word the user has muted.
Что такое Word Blocker?
Word Blocker - это расширение Chrome, разработанное pyran, и его основная функция - "Blocks passages on webpages that include a word the user has muted.".
Снимки экрана расширения
Скачать файл CRX расширения Word Blocker
Скачайте файлы расширений Word Blocker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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" ] } |