Click Censor

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

Was ist Click Censor?

Click Censor ist eine Chrome-Erweiterung, die von Juro Oravec entwickelt wurde, und ihr Hauptmerkmal ist "Censor a selected text on the whole page with a right click".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Click Censor-Erweiterungs-CRX-Datei herunterladen

Laden Sie Click Censor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Click Censor Click Censor
ID janabemecojijnglephdlhkddbddkapm
Offizielle URL https://chromewebstore.google.com/detail/click-censor/janabemecojijnglephdlhkddbddkapm
Beschreibung Censor a selected text on the whole page with a right click
Dateigröße 19.71 KB
Installationsanzahl 41
Aktuelle Version 1.0.1
Letztes Update 2020-10-09
Veröffentlichungsdatum 2020-10-06
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler Juro Oravec
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/JuroOravec/click-censor
Hilfeseite URL https://spectrum.chat/click-censor
URL der Datenschutzrichtlinien-Seite https://github.com/JuroOravec/click-censor/blob/master/PRIVACY_POLICY.md
Unterstützte Sprachen 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"
    }
}