UncommentEr

Un comments hidden stuff in the html

Co je UncommentEr?

UncommentEr je rozšíření Chrome vyvinuté https://elsicarius.fr, a jeho hlavní funkcí je „Un comments hidden stuff in the html“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření UncommentEr

Stáhněte si soubory rozšíření UncommentEr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
Oficiální URL https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Popis Un comments hidden stuff in the html
Velikost souboru 102 KB
Počet instalací 55
Aktuální Verze 0.1
Poslední Aktualizace 2021-04-13
Datum Vydání 2021-04-12
Vývojář https://elsicarius.fr
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/ElSicarius/UnCommenteR
Podporované Jazyky 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"
}