UncommentEr

Un comments hidden stuff in the html

Hvad er UncommentEr?

UncommentEr er en Chrome-udvidelse udviklet af https://elsicarius.fr, og dens hovedfunktion er "Un comments hidden stuff in the html".

Udvidelsesskærmbilleder

screenshot

Download UncommentEr-udvidelses-CRX-fil

Download UncommentEr-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
Officiel URL https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Beskrivelse Un comments hidden stuff in the html
Filstørrelse 102 KB
Antal Installationer 55
Nuværende Version 0.1
Senest Opdateret 2021-04-13
Udgivelsesdato 2021-04-12
Udvikler https://elsicarius.fr
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/ElSicarius/UnCommenteR
Understøttede Sprog 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"
}