Find elements diff

Take screenshots of elements and compare images

Co je Find elements diff?

Find elements diff je rozšíření Chrome vyvinuté https://find-elements-diff.com, a jeho hlavní funkcí je „Take screenshots of elements and compare images“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Find elements diff

Stáhněte si soubory rozšíření Find elements diff ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Find elements diff Find elements diff
ID cghcafdbpkgmmjhecehjknhhhbniledd
Oficiální URL https://chromewebstore.google.com/detail/find-elements-diff/cghcafdbpkgmmjhecehjknhhhbniledd
Popis Take screenshots of elements and compare images
Velikost souboru 9.18 MB
Počet instalací 528
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-11-27
Datum Vydání 2020-09-29
Hodnocení 4.56/5 Celkem 9 Hodnocení
Vývojář https://find-elements-diff.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://find-elements-diff.com/
Podporované Jazyky 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": [
        ""
    ]
}