Enable local file links

Enable local file links

Make it possible to open by click a link to a local file that is disabled by Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "version": "0.8.1",
  "manifest_version": 2,
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "icons": {
    "128": "icon/icon.png"
  },
  "permissions": [
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "minimum_chrome_version": "46.0"
}