Redact The Web

Extension that redacts text on the web

O que é Redact The Web?

Redact The Web é uma extensão do Chrome desenvolvida por deadcoder0904, e sua principal característica é "Extension that redacts text on the web".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Redact The Web

Baixe arquivos de extensão Redact The Web no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Redact The Web Redact The Web
ID hbinnehbfknmojoelfipldnpcekbmbce
URL Oficial https://chromewebstore.google.com/detail/redact-the-web/hbinnehbfknmojoelfipldnpcekbmbce
Descrição Extension that redacts text on the web
Tamanho do Arquivo 18.22 KB
Contagem de Instalações 107
Versão Atual 1.0.1
Última Atualização 2019-10-05
Data de Publicação 2019-10-04
Desenvolvedor deadcoder0904
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/deadcoder0904/redact-the-web
Idiomas Suportados 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"
    ]
}