UncommentEr

Un comments hidden stuff in the html

UncommentEr là gì?

UncommentEr là một tiện ích mở rộng Chrome được phát triển bởi https://elsicarius.fr, và tính năng chính của nó là "Un comments hidden stuff in the html".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng UncommentEr

Tải xuống các tệp mở rộng UncommentEr dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UncommentEr UncommentEr
ID dakbdekmmaendfjkpedbcekghhiabjli
URL Chính Thức https://chromewebstore.google.com/detail/uncommenter/dakbdekmmaendfjkpedbcekghhiabjli
Mô tả Un comments hidden stuff in the html
Kích Thước Tệp 102 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-04-13
Ngày Phát Hành 2021-04-12
Nhà Phát Triển https://elsicarius.fr
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/ElSicarius/UnCommenteR
Ngôn Ngữ Được Hỗ Trợ 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"
}