Custom DOM

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

什麼是Custom DOM?

Custom DOM是由Whisno開發的Chrome擴展程式,該擴展的主要功能是“Use predicates to match DOM nodes and pass them to custom functions.”。

擴展截圖

screenshot

下載Custom DOM擴展crx文件

下載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
官方網址 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"
    ]
}