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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
}