Redact The Web

Extension that redacts text on the web

Was ist Redact The Web?

Redact The Web ist eine Chrome-Erweiterung, die von deadcoder0904 entwickelt wurde, und ihr Hauptmerkmal ist "Extension that redacts text on the web".

Erweiterungsscreenshots

screenshot
screenshot

Redact The Web-Erweiterungs-CRX-Datei herunterladen

Laden Sie Redact The Web-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Redact The Web Redact The Web
ID hbinnehbfknmojoelfipldnpcekbmbce
Offizielle URL https://chromewebstore.google.com/detail/redact-the-web/hbinnehbfknmojoelfipldnpcekbmbce
Beschreibung Extension that redacts text on the web
Dateigröße 18.22 KB
Installationsanzahl 107
Aktuelle Version 1.0.1
Letztes Update 2019-10-05
Veröffentlichungsdatum 2019-10-04
Entwickler deadcoder0904
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/deadcoder0904/redact-the-web
Unterstützte Sprachen 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"
    ]
}