Custom DOM

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

Wat is Custom DOM?

Custom DOM is een Chrome-extensie ontwikkeld door Whisno, en de belangrijkste functie is "Use predicates to match DOM nodes and pass them to custom functions.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Custom DOM

Download Custom DOM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
Officiële URL https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Beschrijving Use predicates to match DOM nodes and pass them to custom functions.
Bestandsgrootte 309 KB
Aantal Installaties 27
Huidige Versie 1.0
Laatst Bijgewerkt 2015-01-17
Publicatiedatum 2015-01-17
Ontwikkelaar Whisno
Betalingswijze free
Extensiewebsite https://github.com/Whisno/Chrome-Custom-DOM
Ondersteunde Talen 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"
    ]
}