BookMyShow - Nearby Theatres

BookMyShow - Nearby Theatres

This extension tells you distance of movie theatres from your current location

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "BookMyShow - Nearby Theatres",
  "description": "This extension tells you distance of movie theatres from your current location",
  "version": "2.0",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "https://in.bookmyshow.com/*",
    "https://maps.googleapis.com/maps/api/distancematrix/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://in.bookmyshow.com/*"
      ],
      "js": [
        "jquery.js",
        "bookmyshow.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}