Click Censor

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

¿Qué es Click Censor?

Click Censor es una extensión de Chrome desarrollada por Juro Oravec, y su función principal es "Censor a selected text on the whole page with a right click".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Click Censor

Descarga archivos de extensión Click Censor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Click Censor Click Censor
ID janabemecojijnglephdlhkddbddkapm
URL Oficial https://chromewebstore.google.com/detail/click-censor/janabemecojijnglephdlhkddbddkapm
Descripción Censor a selected text on the whole page with a right click
Tamaño del Archivo 19.71 KB
Cantidad de Instalaciones 41
Versión Actual 1.0.1
Última Actualización 2020-10-09
Fecha de Publicación 2020-10-06
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador Juro Oravec
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/JuroOravec/click-censor
URL de la Página de Ayuda https://spectrum.chat/click-censor
URL de la Página de Política de Privacidad https://github.com/JuroOravec/click-censor/blob/master/PRIVACY_POLICY.md
Idiomas Soportados 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"
    }
}