Dom Selector

A simple document element selector for styling and tagging purposes.

Dom Selectorคืออะไร?

Dom Selector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shivam Devs และคุณลักษณะหลักของมันคือ "A simple document element selector for styling and tagging purposes."

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

screenshot
screenshot

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

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

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

                        Get NodeName, classList, and id along with width, height, display, padding, margin and border of elements without opening Console.                    

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

ชื่อ Dom Selector Dom Selector
ID bmnofgbgldbkkpgpahilcgalnjocgbla
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dom-selector/bmnofgbgldbkkpgpahilcgalnjocgbla
คำอธิบาย A simple document element selector for styling and tagging purposes.
ขนาดไฟล์ 18.09 KB
จำนวนการติดตั้ง 31
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2022-10-13
วันที่เผยแพร่ 2022-10-13
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Shivam Devs
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/shivamdevs/Dom-Selector
URL หน้านโยบายความเป็นส่วนตัว https://www.termsfeed.com/live/f552c885-d14f-47c5-864d-1ded40f9e755
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dom Selector",
    "version": "2.1.0",
    "description": "A simple document element selector for styling and tagging purposes.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selector.js"
            ]
        }
    ],
    "background": {
        "service_workers": "background.js"
    },
    "action": {
        "default_popup": "selector.html",
        "default_title": "Dom Selector",
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "36": "icons\/icon36.png",
            "48": "icons\/icon48.png"
        }
    },
    "permissions": [
        "storage"
    ]
}