[DATA EXPUNGED]

A Google Chrome extension to hide text like SCP format.

[DATA EXPUNGED]คืออะไร?

[DATA EXPUNGED] เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tackme31 และคุณลักษณะหลักของมันคือ "A Google Chrome extension to hide text like SCP format."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย [DATA EXPUNGED]

ดาวน์โหลดไฟล์ส่วนขยาย [DATA EXPUNGED] ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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:\/\/*\/"
    ]
}