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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}