Allow Right-Click

Allow Right-Click

Re-enable the possibility to use the context menu on sites that overrides it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_chrome_extension_name__",
  "description": "__MSG_chrome_extension_description__",
  "version": "1.5.2.4",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "css": [
        "css/flickr.css"
      ],
      "matches": [
        "http://www.flickr.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "js/rightclick.js",
        "js/new_rightclick.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}