Click Censor

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

什麼是Click Censor?

Click Censor是由Juro Oravec開發的Chrome擴展程式,該擴展的主要功能是“Censor a selected text on the whole page with a right click”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Click Censor擴展crx文件

下載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
官方網址 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"
    }
}