BookMyShow - Nearby Theatres

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

Vad är BookMyShow - Nearby Theatres?

BookMyShow - Nearby Theatres är en Chrome-tillägg utvecklad av Shubham Jindal, och dess huvudfunktion är "This extension tells you distance of movie theatres from your current location".

Tilläggsskärmbilder

screenshot

Ladda ner BookMyShow - Nearby Theatres-förlängningens CRX-fil

Ladda ner BookMyShow - Nearby Theatres-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn BookMyShow - Nearby Theatres BookMyShow - Nearby Theatres
ID ldcebefmigojpejeklfkjgcphginkbic
Officiell webbadress https://chromewebstore.google.com/detail/bookmyshow-nearby-theatre/ldcebefmigojpejeklfkjgcphginkbic
Beskrivning This extension tells you distance of movie theatres from your current location
Filstorlek 72.15 KB
Antal Installationer 61
Aktuell Version 2.0
Senast Uppdaterad 2017-08-29
Publiceringsdatum 2017-08-29
Betyg 4.00/5 Totalt 8 Betyg
Utvecklare Shubham Jindal
E-post [email protected]
Betalningssätt free
Stödda Språk 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
    }
}