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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}