Custom DOM

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

Was ist Custom DOM?

Custom DOM ist eine Chrome-Erweiterung, die von Whisno entwickelt wurde, und ihr Hauptmerkmal ist "Use predicates to match DOM nodes and pass them to custom functions.".

Erweiterungsscreenshots

screenshot

Custom DOM-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom DOM-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
Offizielle URL https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Beschreibung Use predicates to match DOM nodes and pass them to custom functions.
Dateigröße 309 KB
Installationsanzahl 27
Aktuelle Version 1.0
Letztes Update 2015-01-17
Veröffentlichungsdatum 2015-01-17
Entwickler Whisno
Zahlungsart free
Erweiterungswebsite https://github.com/Whisno/Chrome-Custom-DOM
Unterstützte Sprachen 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"
    ]
}