MySQL-Reference-Manual-Version-Checker

MySQL-Reference-Manual-Version-Checker

Warn if referring version of MySQL reference manual is out of range

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MySQL-Reference-Manual-Version-Checker",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Warn if referring version of MySQL reference manual is out of range",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://dev.mysql.com/*"
      ],
      "js": [
        "js/Main.js",
        "js/lib/Admonitor.js",
        "js/lib/Constants.js",
        "js/lib/MySQLRefManURLPath.js",
        "js/lib/URLResolver.js",
        "vendor/jquery.js",
        "vendor/lodash.compat.js",
        "vendor/q.js"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "options.html"
}