Let's eat!

Let's eat!

Unambitious, easy to use chrome extension for group order on FoodPanda.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.5",
  "name": "Let's eat!",
  "short_name": " Let's eat!",
  "description": "Unambitious, easy to use chrome extension for group order on FoodPanda.com",
  "permissions": [
    "activeTab",
    "storage",
    "https://grouporderbuddyapp.azurewebsites.net"
  ],
  "optional_permissions": [
    "http://www.foodpanda.ro/*",
    "https://www.foodpanda.ro/*",
    "https://www.foodpanda.com/*"
  ],
  "icons": {
    "19": "assets/images/icon_1.png",
    "128": "assets/images/icon_2_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "assets/images/icon_1.png"
    },
    "default_title": "Let's eat!",
    "default_popup": "popup.html"
  },
  "options_page": "options_page/options.html",
  "background": {
    "scripts": [
      "assets/jquery-2.0.3.js",
      "assets/jquery.whencallsequentially.js",
      "assets/chrome-extension-async.js",
      "scripts/BackgroundScript.js",
      "scripts/Popup.js",
      "scripts/UpdateOrder.js",
      "scripts/Config.js"
    ]
  },
  "web_accessible_resources": [
    "assets/images/icon.png",
    "assets/images/icon128.png"
  ]
}