WebDiff

Simple tool for comparing HTML output

Apa itu WebDiff?

WebDiff adalah ekstensi Chrome yang dikembangkan oleh popov654, dan fitur utamanya adalah "Simple tool for comparing HTML output".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi WebDiff

Unduh file ekstensi WebDiff dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama WebDiff WebDiff
ID gcghfdgbmddlpmpnnhdihagnhpjjpcdd
URL Resmi https://chromewebstore.google.com/detail/webdiff/gcghfdgbmddlpmpnnhdihagnhpjjpcdd
Deskripsi Simple tool for comparing HTML output
Ukuran File 136 KB
Jumlah Instalasi 38
Versi Saat Ini 1.1.5
Terakhir Diperbarui 2020-08-01
Tanggal Publikasi 2020-07-04
Pengembang popov654
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}