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