Find elements diff

Take screenshots of elements and compare images

什麼是Find elements diff?

Find elements diff是由https://find-elements-diff.com開發的Chrome擴展程式,該擴展的主要功能是“Take screenshots of elements and compare images”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Find elements diff擴展crx文件

下載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
官方網址 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": [
        ""
    ]
}