UncommentEr

Un comments hidden stuff in the html

Что такое UncommentEr?

UncommentEr - это расширение Chrome, разработанное https://elsicarius.fr, и его основная функция - "Un comments hidden stuff in the html".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения UncommentEr

Скачайте файлы расширений UncommentEr в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
Официальный URL https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Описание Un comments hidden stuff in the html
Размер файла 102 KB
Количество установок 55
Текущая Версия 0.1
Последнее Обновление 2021-04-13
Дата публикации 2021-04-12
Разработчик https://elsicarius.fr
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/ElSicarius/UnCommenteR
Поддерживаемые языки 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"
}