WebDiff

Simple tool for comparing HTML output

什麼是WebDiff?

WebDiff是由popov654開發的Chrome擴展程式,該擴展的主要功能是“Simple tool for comparing HTML output”。

擴展截圖

screenshot
screenshot
screenshot

下載WebDiff擴展crx文件

下載WebDiff擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}