HTML Diff Check Tool

HTML Diff Check Tool

Tool for checking HTML difference between tabs ,or between production and development environment.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.2.2",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extNameShort__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "scripts": [
      "async.js",
      "common.js",
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "38.png",
    "default_popup": "popup.html",
    "default_title": "__MSG_extNameShort__"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "contextMenus"
  ],
  "options_page": "options.html",
  "incognito": "split",
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'"
}