Elements Viewer

See your elements height and width on webpage

Elements Viewerคืออะไร?

Elements Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Seke Nikola และคุณลักษณะหลักของมันคือ "See your elements height and width on webpage"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Elements Viewer

ดาวน์โหลดไฟล์ส่วนขยาย Elements Viewer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Element Viewer is a simple extension that helps front-end developers and designers to have a better visual representation of how elements are position on a web page.

Usage: Just press extension icon to toggle on and off.

Inspired by the tip from Gajus Kuizinas (https://github.com/gajus)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Elements Viewer Elements Viewer
ID okglkbdhaneaglfmkmbkmglobmondaoc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/elements-viewer/okglkbdhaneaglfmkmbkmglobmondaoc
คำอธิบาย See your elements height and width on webpage
ขนาดไฟล์ 5.61 KB
จำนวนการติดตั้ง 107
เวอร์ชันปัจจุบัน 1
อัปเดตครั้งล่าสุด 2019-09-12
วันที่เผยแพร่ 2019-09-12
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Seke Nikola
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Elements Viewer",
    "description": "See your elements height and width on webpage",
    "version": "1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "elements-viewer.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Elements Viewer"
    },
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "manifest_version": 2
}