Click Censor

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

Qu'est-ce que Click Censor ?

Click Censor est une extension Chrome développée par Juro Oravec, et sa fonction principale est "Censor a selected text on the whole page with a right click".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Click Censor

Téléchargez les fichiers d'extension Click Censor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Click Censor Click Censor
ID janabemecojijnglephdlhkddbddkapm
URL Officiel https://chromewebstore.google.com/detail/click-censor/janabemecojijnglephdlhkddbddkapm
Description Censor a selected text on the whole page with a right click
Taille du Fichier 19.71 KB
Nombre d'Installations 41
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-10-09
Date de Publication 2020-10-06
Évaluation 3.00/5 Total 2 Évaluations
Développeur Juro Oravec
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/JuroOravec/click-censor
URL de la Page d'Aide https://spectrum.chat/click-censor
URL de la Page de Politique de Confidentialité https://github.com/JuroOravec/click-censor/blob/master/PRIVACY_POLICY.md
Langues Prises en Charge 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"
    }
}