UncommentEr

Un comments hidden stuff in the html

Vad är UncommentEr?

UncommentEr är en Chrome-tillägg utvecklad av https://elsicarius.fr, och dess huvudfunktion är "Un comments hidden stuff in the html".

Tilläggsskärmbilder

screenshot

Ladda ner UncommentEr-förlängningens CRX-fil

Ladda ner UncommentEr-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
Officiell webbadress https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Beskrivning Un comments hidden stuff in the html
Filstorlek 102 KB
Antal Installationer 55
Aktuell Version 0.1
Senast Uppdaterad 2021-04-13
Publiceringsdatum 2021-04-12
Utvecklare https://elsicarius.fr
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/ElSicarius/UnCommenteR
Stödda Språk 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"
}