WebDiff

Simple tool for comparing HTML output

WebDiff란 무엇입니까?

WebDiff은(는) popov654에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple tool for comparing HTML output"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Allows to compare HTML output before and after some change in the backend (refactoring etc.)
Comparing post-processed HTML (after all JavaScript code is executed) and page visual representation are planned in the future releases                    

확장 프로그램 기본 정보

이름 WebDiff WebDiff
ID gcghfdgbmddlpmpnnhdihagnhpjjpcdd
공식 URL https://chromewebstore.google.com/detail/webdiff/gcghfdgbmddlpmpnnhdihagnhpjjpcdd
설명 Simple tool for comparing HTML output
파일 크기 136 KB
설치 횟수 38
현재 버전 1.1.5
최근 업데이트 2020-08-01
출시 날짜 2020-07-04
개발자 popov654
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WebDiff",
    "description": "Simple tool for comparing HTML output",
    "version": "1.1.5",
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png"
    },
    "options_page": "options.html",
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        ""
    ],
    "web_accessible_resources": [
        "",
        "icons\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_title": "WebDiff",
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    }
}