Custom DOM

Use predicates to match DOM nodes and pass them to custom functions.

Custom DOMคืออะไร?

Custom DOM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Whisno และคุณลักษณะหลักของมันคือ "Use predicates to match DOM nodes and pass them to custom functions."

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

screenshot

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

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

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

                        This extension traverses the DOM (both static and dynamically generated). Each node for which the predicate function returns true will be passed to the handling function.

You can configure the extension through the extensions page (chrome://extensions/)                    

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

ชื่อ Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
คำอธิบาย Use predicates to match DOM nodes and pass them to custom functions.
ขนาดไฟล์ 309 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2015-01-17
วันที่เผยแพร่ 2015-01-17
ผู้พัฒนา Whisno
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Whisno/Chrome-Custom-DOM
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Custom DOM",
    "version": "1.0",
    "description": "Use predicates to match DOM nodes and pass them to custom functions.",
    "icons": {
        "128": "assets\/icon-128.png",
        "48": "assets\/icon-48.png",
        "24": "assets\/icon-24.png"
    },
    "homepage_url": "https:\/\/github.com\/Whisno\/Chrome-Custom-DOM",
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "options.html",
    "permissions": [
        "storage"
    ]
}