Custom DOM

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

ما هو Custom DOM؟

Custom DOM هو إضافة Chrome تم تطويرها بواسطة Whisno، والميزة الرئيسية لها هي "Use predicates to match DOM nodes and pass them to custom functions.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Custom DOM

قم بتنزيل ملفات الامتداد Custom DOM بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Custom DOM Custom DOM
ID klmbmehkdcmkbcglhnfimklbepjogppo
عنوان URL الرسمي https://chromewebstore.google.com/detail/custom-dom/klmbmehkdcmkbcglhnfimklbepjogppo
الوصف Use predicates to match DOM nodes and pass them to custom functions.
حجم الملف 309 KB
عدد التثبيتات 27
النسخة الحالية 1.0
آخر تحديث 2015-01-17
تاريخ النشر 2015-01-17
المطور Whisno
نوع الدفع free
موقع الإضافة https://github.com/Whisno/Chrome-Custom-DOM
اللغات المدعومة 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"
    ]
}