Find elements diff

Take screenshots of elements and compare images

Что такое Find elements diff?

Find elements diff - это расширение Chrome, разработанное https://find-elements-diff.com, и его основная функция - "Take screenshots of elements and compare images".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Simple tool, that helps developers and QA teams deliver pixel perfect frontend to clients.

Generally, this extension solves these problems:

1. Compare screenshots of DOM elements on different pages. For example, you have development and production versions and you want to compare them.
2. Compare screenshot of DOM element with design (uploaded as png file)

Tool integrated in DevToolsPanel. Elements -> Find Diff                    

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

Название Find elements diff Find elements diff
ID cghcafdbpkgmmjhecehjknhhhbniledd
Официальный URL https://chromewebstore.google.com/detail/find-elements-diff/cghcafdbpkgmmjhecehjknhhhbniledd
Описание Take screenshots of elements and compare images
Размер файла 9.18 MB
Количество установок 528
Текущая Версия 0.0.1
Последнее Обновление 2020-11-27
Дата публикации 2020-09-29
Рейтинг 4.56/5 Всего 9 оценок
Разработчик https://find-elements-diff.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://find-elements-diff.com/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find elements diff",
    "description": "Take screenshots of elements and compare images",
    "version": "0.0.1",
    "devtools_page": "devtools.html",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "build\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content.js"
            ]
        }
    ],
    "permissions": [
        ""
    ]
}