Redact The Web

Extension that redacts text on the web

Что такое Redact The Web?

Redact The Web - это расширение Chrome, разработанное deadcoder0904, и его основная функция - "Extension that redacts text on the web".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Redact The Web

Скачайте файлы расширений Redact The Web в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to redact the text on the web.

It works on every website.

The code is completely open-source and can be found on Github → https://github.com/deadcoder0904/redact-the-web

**Changelog**

v1.0.1 - Bundled font with the extension & now supports Cyrillic (Russians and Ukrainians) symbols 

v1.0.0 - Initial Release                    

Основная информация о расширении

Название Redact The Web Redact The Web
ID hbinnehbfknmojoelfipldnpcekbmbce
Официальный URL https://chromewebstore.google.com/detail/redact-the-web/hbinnehbfknmojoelfipldnpcekbmbce
Описание Extension that redacts text on the web
Размер файла 18.22 KB
Количество установок 107
Текущая Версия 1.0.1
Последнее Обновление 2019-10-05
Дата публикации 2019-10-04
Разработчик deadcoder0904
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/deadcoder0904/redact-the-web
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Redact The Web",
    "offline_enabled": true,
    "version": "1.0.1",
    "description": "Extension that redacts text on the web",
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "24": "icon24.png",
        "32": "icon32.png",
        "38": "icon38.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "style.css",
        "Redacted-Regular.ttf"
    ],
    "permissions": [
        "activeTab"
    ]
}