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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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": [
        ""
    ]
}