Find elements diff

Take screenshots of elements and compare images

Cos'è Find elements diff?

Find elements diff è un'estensione di Chrome sviluppata da https://find-elements-diff.com, e la sua funzione principale è "Take screenshots of elements and compare images".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Find elements diff

Scarica i file di estensione Find elements diff in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Find elements diff Find elements diff
ID cghcafdbpkgmmjhecehjknhhhbniledd
URL Ufficiale https://chromewebstore.google.com/detail/find-elements-diff/cghcafdbpkgmmjhecehjknhhhbniledd
Descrizione Take screenshots of elements and compare images
Dimensione del File 9.18 MB
Conteggio Installazioni 528
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-11-27
Data di Pubblicazione 2020-09-29
Valutazione 4.56/5 Totale 9 Valutazioni
Sviluppatore https://find-elements-diff.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://find-elements-diff.com/
Lingue Supportate 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": [
        ""
    ]
}