Redact The Web

Extension that redacts text on the web

Redact The Webとは何ですか?

Redact The Webはdeadcoder0904によって開発されたChromeの拡張機能で、その主な機能は「Extension that redacts text on the web」です。

拡張機能のスクリーンショット

screenshot
screenshot

Redact The Web拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}