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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}