Custom DOM

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

What is Custom DOM?

Custom DOM is a Chrome extension developed by Whisno, and its main feature is "Use predicates to match DOM nodes and pass them to custom functions.".

Extension Screenshots

screenshot

Download Custom DOM Extension CRX File

Download Custom DOM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
Official URL https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Description Use predicates to match DOM nodes and pass them to custom functions.
File Size 309 KB
Installation Count 27
Current Version 1.0
Last Updated 2015-01-17
Publish Date 2015-01-17
Developer Whisno
Payment Type free
Extension Website https://github.com/Whisno/Chrome-Custom-DOM
Supported Languages 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"
    ]
}