UncommentEr

Un comments hidden stuff in the html

Cos'è UncommentEr?

UncommentEr è un'estensione di Chrome sviluppata da https://elsicarius.fr, e la sua funzione principale è "Un comments hidden stuff in the html".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione UncommentEr

Scarica i file di estensione UncommentEr in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
URL Ufficiale https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Descrizione Un comments hidden stuff in the html
Dimensione del File 102 KB
Conteggio Installazioni 55
Versione Corrente 0.1
Ultimo Aggiornamento 2021-04-13
Data di Pubblicazione 2021-04-12
Sviluppatore https://elsicarius.fr
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/ElSicarius/UnCommenteR
Lingue Supportate 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"
}