Find elements diff

Take screenshots of elements and compare images

Co to jest Find elements diff?

Find elements diff to rozszerzenie Chrome opracowane przez https://find-elements-diff.com, a jego główną funkcją jest „Take screenshots of elements and compare images”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Find elements diff

Pobierz pliki rozszerzeń Find elements diff w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Find elements diff Find elements diff
ID cghcafdbpkgmmjhecehjknhhhbniledd
Oficjalny URL https://chromewebstore.google.com/detail/find-elements-diff/cghcafdbpkgmmjhecehjknhhhbniledd
Opis Take screenshots of elements and compare images
Rozmiar pliku 9.18 MB
Liczba instalacji 528
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2020-11-27
Data Publikacji 2020-09-29
Ocena 4.56/5 Łącznie 9 Oceny
Deweloper https://find-elements-diff.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://find-elements-diff.com/
Obsługiwane Języki 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": [
        ""
    ]
}