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
官方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"
    ]
}