Hidden Eye

hide/view HTML elements on a web page.

ما هو Hidden Eye؟

Hidden Eye هو إضافة Chrome تم تطويرها بواسطة Autonomous Web، والميزة الرئيسية لها هي "hide/view HTML elements on a web page.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Hidden Eye

قم بتنزيل ملفات الامتداد Hidden Eye بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Use this extension to unhide hidden elements on a webpage, it provides:
- Easy to use UI
- Reveal the hidden fields.
- Hide elements.
- Clear/Revert the webpage to it's original look.                    

معلومات أساسية عن التمديد

الاسم Hidden Eye Hidden Eye
ID gonabakinkhgeojpnkhhholbjpajbiec
عنوان URL الرسمي https://chromewebstore.google.com/detail/hidden-eye/gonabakinkhgeojpnkhhholbjpajbiec
الوصف hide/view HTML elements on a web page.
حجم الملف 75.33 KB
عدد التثبيتات 44
النسخة الحالية 0.0.3
آخر تحديث 2023-10-06
تاريخ النشر 2022-11-26
المطور Autonomous Web
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hidden Eye",
    "description": "hide\/view HTML elements on a web page.",
    "version": "0.0.3",
    "manifest_version": 3,
    "action": {
        "default_popup": ".\/views\/index.html",
        "default_icon": {
            "16": "\/assets\/icon_128.png",
            "32": "\/assets\/icon_128.png",
            "48": "\/assets\/icon_128.png",
            "128": "\/assets\/icon_128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "\/assets\/icon_128.png",
        "32": "\/assets\/icon_128.png",
        "48": "\/assets\/icon_128.png",
        "128": "\/assets\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "activeTab"
    ]
}