Page Analyzer

Page Analyzer

Find out the HTML & CSS compatiblity of your webPage with different Web Browsers. Works on Intranet as well.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com http://localhost; object-src 'self' ",
  "description": "Find out the HTML & CSS compatiblity of your webPage with different Web Browsers. Works on Intranet as well.",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "23.0.0.0",
  "name": "Page Analyzer",
  "browser_action": {
    "default_icon": {
      "19": "icon_19.png",
      "38": "icon_38.png"
    },
    "default_title": "Get compatiblity report for different Browsers"
  },
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "webNavigation",
    "<all_urls>",
    "contextMenus"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.5",
  "version_name": "2.5",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+A",
        "mac": "Command+Shift+A",
        "chromeos": "Ctrl+Shift+A",
        "linux": "Ctrl+Shift+A"
      }
    }
  }
}