Custom DOM

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

Co je Custom DOM?

Custom DOM je rozšíření Chrome vyvinuté Whisno, a jeho hlavní funkcí je „Use predicates to match DOM nodes and pass them to custom functions.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Custom DOM

Stáhněte si soubory rozšíření Custom DOM ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
Oficiální URL https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Popis Use predicates to match DOM nodes and pass them to custom functions.
Velikost souboru 309 KB
Počet instalací 27
Aktuální Verze 1.0
Poslední Aktualizace 2015-01-17
Datum Vydání 2015-01-17
Vývojář Whisno
Typ Platby free
Webové stránky Rozšíření https://github.com/Whisno/Chrome-Custom-DOM
Podporované Jazyky 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"
    ]
}