Click Censor

Censor a selected text on the whole page with a right click

Click Censorคืออะไร?

Click Censor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Juro Oravec และคุณลักษณะหลักของมันคือ "Censor a selected text on the whole page with a right click"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click Censor

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

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

                        Censor text throughout the page with a click of a mouse.

Temporarily hide / censor all instances of a word or a sentence:
1. Select the text.
2. Right click.
3. Select "Hide Selected Text".

To unhide / uncensor the text again:
1. Right click on the hidden text.
2. Select "Unhide Selected Text".

Features:
- Hide / unhide selected text with an option in the context menu (right-click menu).
- Hides all instances of the selected text on the whole page.
- Censored text cannot be revealed accidentally by selecting or copying.
- Hide what you need when you need it - no need to set a list of censored words in the settings.

Useful for:
- Studying and Learning - Hide the answer to test your knowledge. Reveal once you've answered the question. Learn directly from the source, no need to copy-paste.
- Screenshots / Screen capture / Screen recording - Hide sensitive information quickly.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Click Censor Click Censor
ID janabemecojijnglephdlhkddbddkapm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/click-censor/janabemecojijnglephdlhkddbddkapm
คำอธิบาย Censor a selected text on the whole page with a right click
ขนาดไฟล์ 19.71 KB
จำนวนการติดตั้ง 41
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-10-09
วันที่เผยแพร่ 2020-10-06
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Juro Oravec
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/JuroOravec/click-censor
URL หน้าช่วยเหลือ https://spectrum.chat/click-censor
URL หน้านโยบายความเป็นส่วนตัว https://github.com/JuroOravec/click-censor/blob/master/PRIVACY_POLICY.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Click Censor",
    "description": "Censor a selected text on the whole page with a right click",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/JuroOravec\/click-censor",
    "permissions": [
        "activeTab",
        "contextMenus",
        ""
    ],
    "browser_action": {
        "default_title": "Click Censor"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mark.min.js",
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "48": "icon.png"
    }
}