BookMyShow - Nearby Theatres

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

¿Qué es BookMyShow - Nearby Theatres?

BookMyShow - Nearby Theatres es una extensión de Chrome desarrollada por Shubham Jindal, y su función principal es "This extension tells you distance of movie theatres from your current location".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión BookMyShow - Nearby Theatres

Descarga archivos de extensión BookMyShow - Nearby Theatres en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        The extension tells you driving distance of your movie theatres from your current location on BookMyShow.

- No more hassles in figuring out which theatre is nearby to your location
- Direct map link to a corresponding theatre for the driving directions

Just accept the popup to use the current location and it will automatically work

****COMING SOON****
Sort by distance to see accurately the nearest theatres                    

Información Básica de la Extensión

Nombre BookMyShow - Nearby Theatres BookMyShow - Nearby Theatres
ID ldcebefmigojpejeklfkjgcphginkbic
URL Oficial https://chromewebstore.google.com/detail/bookmyshow-nearby-theatre/ldcebefmigojpejeklfkjgcphginkbic
Descripción This extension tells you distance of movie theatres from your current location
Tamaño del Archivo 72.15 KB
Cantidad de Instalaciones 61
Versión Actual 2.0
Última Actualización 2017-08-29
Fecha de Publicación 2017-08-29
Calificación 4.00/5 Total de 8 Calificaciones
Desarrollador Shubham Jindal
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
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
    }
}