WebDiff

Simple tool for comparing HTML output

O que é WebDiff?

WebDiff é uma extensão do Chrome desenvolvida por popov654, e sua principal característica é "Simple tool for comparing HTML output".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão WebDiff

Baixe arquivos de extensão WebDiff no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome WebDiff WebDiff
ID gcghfdgbmddlpmpnnhdihagnhpjjpcdd
URL Oficial https://chromewebstore.google.com/detail/webdiff/gcghfdgbmddlpmpnnhdihagnhpjjpcdd
Descrição Simple tool for comparing HTML output
Tamanho do Arquivo 136 KB
Contagem de Instalações 38
Versão Atual 1.1.5
Última Atualização 2020-08-01
Data de Publicação 2020-07-04
Desenvolvedor popov654
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}