Compare

Visually diff 2 webpages.

Compare란 무엇입니까?

Compare은(는) https://kunal-p.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visually diff 2 webpages."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Compare 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Uses CSS mix-blend-mode to visually diff 2 webpages. Enter a second page's url to compare it against the currently open tab. Black equals no difference (two identical pages will result in a completely black page).                    

확장 프로그램 기본 정보

이름 Compare Compare
ID ggjmpbblkadkjemjmknnfdjbahchknjh
공식 URL https://chromewebstore.google.com/detail/compare/ggjmpbblkadkjemjmknnfdjbahchknjh
설명 Visually diff 2 webpages.
파일 크기 57.72 KB
설치 횟수 148
현재 버전 1.0
최근 업데이트 2017-10-17
출시 날짜 2017-10-16
평점 3.33/5 총 3 개의 평점
개발자 https://kunal-p.com
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kunal-p/Compare
도움말 페이지 URL https://github.com/kunal-p/Compare
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Compare",
    "description": "Visually diff 2 webpages.",
    "version": "1.0",
    "homepage_url": "https:\/\/github.com\/kunal-p\/Compare",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html",
        "default_title": "Compare"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": false,
            "js": [
                "scripts\/jquery.min.js",
                "scripts\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/; object-src 'self'"
}