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
公式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
Eメール [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"
    }
}