Find elements diff

Take screenshots of elements and compare images

Apa itu Find elements diff?

Find elements diff adalah ekstensi Chrome yang dikembangkan oleh https://find-elements-diff.com, dan fitur utamanya adalah "Take screenshots of elements and compare images".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Find elements diff

Unduh file ekstensi Find elements diff dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Find elements diff Find elements diff
ID cghcafdbpkgmmjhecehjknhhhbniledd
URL Resmi https://chromewebstore.google.com/detail/find-elements-diff/cghcafdbpkgmmjhecehjknhhhbniledd
Deskripsi Take screenshots of elements and compare images
Ukuran File 9.18 MB
Jumlah Instalasi 528
Versi Saat Ini 0.0.1
Terakhir Diperbarui 2020-11-27
Tanggal Publikasi 2020-09-29
Penilaian 4.56/5 Total 9 Penilaian
Pengembang https://find-elements-diff.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://find-elements-diff.com/
Bahasa yang Didukung 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": [
        ""
    ]
}