Custom DOM

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

Apa itu Custom DOM?

Custom DOM adalah ekstensi Chrome yang dikembangkan oleh Whisno, dan fitur utamanya adalah "Use predicates to match DOM nodes and pass them to custom functions.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Custom DOM

Unduh file ekstensi Custom DOM dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
URL Resmi https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
Deskripsi Use predicates to match DOM nodes and pass them to custom functions.
Ukuran File 309 KB
Jumlah Instalasi 27
Versi Saat Ini 1.0
Terakhir Diperbarui 2015-01-17
Tanggal Publikasi 2015-01-17
Pengembang Whisno
Tipe Pembayaran free
Situs Ekstensi https://github.com/Whisno/Chrome-Custom-DOM
Bahasa yang Didukung 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"
    ]
}