Custom DOM

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

Cos'è Custom DOM?

Custom DOM è un'estensione di Chrome sviluppata da Whisno, e la sua funzione principale è "Use predicates to match DOM nodes and pass them to custom functions.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Custom DOM

Scarica i file di estensione Custom DOM in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
URL Ufficiale https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Descrizione Use predicates to match DOM nodes and pass them to custom functions.
Dimensione del File 309 KB
Conteggio Installazioni 27
Versione Corrente 1.0
Ultimo Aggiornamento 2015-01-17
Data di Pubblicazione 2015-01-17
Sviluppatore Whisno
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Whisno/Chrome-Custom-DOM
Lingue Supportate 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"
    ]
}