Custom DOM

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

Custom DOM là gì?

Custom DOM là một tiện ích mở rộng Chrome được phát triển bởi Whisno, và tính năng chính của nó là "Use predicates to match DOM nodes and pass them to custom functions.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Custom DOM

Tải xuống các tệp mở rộng Custom DOM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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/)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
URL Chính Thức https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Mô tả Use predicates to match DOM nodes and pass them to custom functions.
Kích Thước Tệp 309 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-01-17
Ngày Phát Hành 2015-01-17
Nhà Phát Triển Whisno
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Whisno/Chrome-Custom-DOM
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}