ElementHistory

See what code created or updated a DOM element

Что такое ElementHistory?

ElementHistory - это расширение Chrome, разработанное Matt Zeunert, и его основная функция - "See what code created or updated a DOM element".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения ElementHistory

Скачайте файлы расширений ElementHistory в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Turn on element history in a tab by clicking the ElementHistory icon. Reload the page if you want to track the whole history.

More information: https://github.com/mattzeunert/ElementHistory

Report issues here: https://github.com/mattzeunert/ElementHistory/issues                    

Основная информация о расширении

Название ElementHistory ElementHistory
ID idhhmihgigngdppfpklkdklfaikkecge
Официальный URL https://chromewebstore.google.com/detail/elementhistory/idhhmihgigngdppfpklkdklfaikkecge
Описание See what code created or updated a DOM element
Размер файла 281 KB
Количество установок 47
Текущая Версия 1.6
Последнее Обновление 2017-11-15
Дата публикации 2017-11-15
Рейтинг 3.00/5 Всего 2 оценок
Разработчик Matt Zeunert
Тип оплаты free
Официальный сайт расширения https://github.com/mattzeunert/ElementHistory
URL страницы помощи https://github.com/mattzeunert/ElementHistory/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ElementHistory",
    "description": "See what code created or updated a DOM element",
    "version": "1.6",
    "browser_action": [],
    "icons": {
        "64": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "trackHistory.js"
    ]
}