WebDiff

Simple tool for comparing HTML output

Vad är WebDiff?

WebDiff är en Chrome-tillägg utvecklad av popov654, och dess huvudfunktion är "Simple tool for comparing HTML output".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner WebDiff-förlängningens CRX-fil

Ladda ner WebDiff-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn WebDiff WebDiff
ID gcghfdgbmddlpmpnnhdihagnhpjjpcdd
Officiell webbadress https://chromewebstore.google.com/detail/webdiff/gcghfdgbmddlpmpnnhdihagnhpjjpcdd
Beskrivning Simple tool for comparing HTML output
Filstorlek 136 KB
Antal Installationer 38
Aktuell Version 1.1.5
Senast Uppdaterad 2020-08-01
Publiceringsdatum 2020-07-04
Utvecklare popov654
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}