UncommentEr

Un comments hidden stuff in the html

Co to jest UncommentEr?

UncommentEr to rozszerzenie Chrome opracowane przez https://elsicarius.fr, a jego główną funkcją jest „Un comments hidden stuff in the html”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia UncommentEr

Pobierz pliki rozszerzeń UncommentEr w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
Oficjalny URL https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Opis Un comments hidden stuff in the html
Rozmiar pliku 102 KB
Liczba instalacji 55
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2021-04-13
Data Publikacji 2021-04-12
Deweloper https://elsicarius.fr
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/ElSicarius/UnCommenteR
Obsługiwane Języki 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"
}