.URL Handler

.URL Handler

An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": ".URL Handler",
  "version": "1.0",
  "manifest_version": 2,
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "description": "An extension to handle .url files if they open on in Chrome as plain text. Please see issue 114871 for more details.",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "file://*.url"
      ],
      "js": [
        "jquery.js",
        "openurl.js"
      ]
    }
  ]
}