UncommentEr

Un comments hidden stuff in the html

¿Qué es UncommentEr?

UncommentEr es una extensión de Chrome desarrollada por https://elsicarius.fr, y su función principal es "Un comments hidden stuff in the html".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión UncommentEr

Descarga archivos de extensión UncommentEr 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

                        Find html comments, hidden styles, none display and remove them. This allows you to reveal hidden stuff in web pages.
This might be useful in pentest/bug hunting :D

Enjoy.

repo: https://github.com/ElSicarius/UnCommenteR                    

Información Básica de la Extensión

Nombre UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
URL Oficial https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Descripción Un comments hidden stuff in the html
Tamaño del Archivo 102 KB
Cantidad de Instalaciones 55
Versión Actual 0.1
Última Actualización 2021-04-13
Fecha de Publicación 2021-04-12
Desarrollador https://elsicarius.fr
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Ayuda https://github.com/ElSicarius/UnCommenteR
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_action": {
        "default_title": "UncommentEr",
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Un comments hidden stuff in the html",
    "icons": {
        "128": "icon_128.png",
        "16": "icon_16.png",
        "48": "icon_48.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "name": "UncommentEr",
    "permissions": [
        "storage",
        "activeTab",
        "declarativeContent"
    ],
    "version": "0.1",
    "author": "Sicarius"
}