Menu Tweaker

Menu Tweaker

Allows Just Eat menu variations to be seen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "homepage_url": "http://localhost:8080/",
  "description": "",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "*://localhost/*",
    "*://*.just-eat.co.uk/*",
    "*://*.just-eat.es/*",
    "*://*.menulog.com.au/*",
    "*://*.menulog.co.nz/*"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/96.png",
    "128": "icons/144.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://localhost/*",
        "*://*.just-eat.co.uk/*",
        "*://*.just-eat.es/*",
        "*://*.menulog.com.au/*",
        "*://*.menulog.co.nz/*",
        "*://*.je-labs.com/*"
      ],
      "js": [
        "js/content-script.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "__MSG_extName__",
    "default_icon": {
      "19": "icons/32.png",
      "38": "icons/57.png"
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "version": "0.8.0",
  "content_security_policy": "script-src 'self' ; object-src 'self'"
}