Custom DOM

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

Hvad er Custom DOM?

Custom DOM er en Chrome-udvidelse udviklet af Whisno, og dens hovedfunktion er "Use predicates to match DOM nodes and pass them to custom functions.".

Udvidelsesskærmbilleder

screenshot

Download Custom DOM-udvidelses-CRX-fil

Download Custom DOM-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
Officiel URL https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Beskrivelse Use predicates to match DOM nodes and pass them to custom functions.
Filstørrelse 309 KB
Antal Installationer 27
Nuværende Version 1.0
Senest Opdateret 2015-01-17
Udgivelsesdato 2015-01-17
Udvikler Whisno
Betalingsmetode free
Udvidelseswebsted https://github.com/Whisno/Chrome-Custom-DOM
Understøttede Sprog 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"
    ]
}