[DATA EXPUNGED]

A Google Chrome extension to hide text like SCP format.

[DATA EXPUNGED]란 무엇입니까?

[DATA EXPUNGED]은(는) tackme31에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Google Chrome extension to hide text like SCP format."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

[DATA EXPUNGED] 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Replace sentences or words with "███" or "[DATA EXPUNGED]" that contain pre-registered keywords. This extension will help you hide text you don't want to see.

## Features
- Mute HTML tags that contain words you don't want to see.
- See the original sentence by clicking the masked area.
- Specify target HTML tags to mute.
- Specify target sites to mute.
- Exporting and importing options.
- Set the selected text to be muted.
- Set the current site to mute.

## Release notes
### v0.2.0
- Now able to toggle enable/disable on the page you are looking at.
- The options' changes are reflected immediately.
- Validations are added to the options page.
- Dynamically rendered content is censored now.                    

확장 프로그램 기본 정보

이름 [DATA EXPUNGED] [DATA EXPUNGED]
ID lmoeanpjjaliocmmbjloeiccpkoccado
공식 URL https://chromewebstore.google.com/detail/data-expunged/lmoeanpjjaliocmmbjloeiccpkoccado
설명 A Google Chrome extension to hide text like SCP format.
파일 크기 139 KB
설치 횟수 94
현재 버전 0.2.0
최근 업데이트 2022-02-21
출시 날짜 2022-02-05
평점 4.00/5 총 3 개의 평점
개발자 tackme31
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tackme31/data-expunged
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_Name__",
    "version": "0.2.0",
    "default_locale": "en",
    "description": "__MSG_Description__",
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.global.js"
    },
    "icons": {
        "16": ".\/assets\/icons\/16x16.png",
        "48": ".\/assets\/icons\/48x48.png",
        "128": ".\/assets\/icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                ".\/dist\/contentScripts\/index.global.js"
            ],
            "all_frames": true
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_icon": ".\/assets\/icons\/128x128.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "permissions": [
        "storage",
        "activeTab",
        "downloads",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}