BookMyShow - Nearby Theatres

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

Τι είναι το BookMyShow - Nearby Theatres;

Το BookMyShow - Nearby Theatres είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Shubham Jindal, και η κύρια λειτουργία του είναι "This extension tells you distance of movie theatres from your current location".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης BookMyShow - Nearby Theatres

Λήψη αρχείων επέκτασης BookMyShow - Nearby Theatres σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα BookMyShow - Nearby Theatres BookMyShow - Nearby Theatres
ID ldcebefmigojpejeklfkjgcphginkbic
Επίσημο URL https://chromewebstore.google.com/detail/bookmyshow-nearby-theatre/ldcebefmigojpejeklfkjgcphginkbic
Περιγραφή This extension tells you distance of movie theatres from your current location
Μέγεθος Αρχείου 72.15 KB
Αριθμός Εγκαταστάσεων 61
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2017-08-29
Ημερομηνία Δημοσίευσης 2017-08-29
Αξιολόγηση 4.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Shubham Jindal
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
    }
}