"Missing Plug-in" Fix

"Missing Plug-in" Fix

A simple extension to fix error "missing plugin" when browsing flash content for Google Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "2.1",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "default_locale": "vi",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/jquery-1.7.min.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "js/flashfix.js"
      ],
      "run_at": "document_end"
    }
  ]
}