EasyMap

Easily get directions to any address on a page!

Cos'è EasyMap?

EasyMap è un'estensione di Chrome sviluppata da jchernus, e la sua funzione principale è "Easily get directions to any address on a page!".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione EasyMap

Scarica i file di estensione EasyMap in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Simply highlight the address (for example, on Craigslist), right click, and choose where you want your directions to be from: your current location or a saved address. 

Developed by J Chernushevich, R Shah, B Komer, M Unger for a Facebook Hackathon.                    

Informazioni di Base sull'Estensione

Nome EasyMap EasyMap
ID gdhkngibdllfjhciaobdcmeabafencdm
URL Ufficiale https://chrome.google.com/webstore/detail/easymap/gdhkngibdllfjhciaobdcmeabafencdm
Descrizione Easily get directions to any address on a page!
Dimensione del File 98.3 KB
Conteggio Installazioni 29
Versione Corrente 1.0.0
Ultimo Aggiornamento 2014-09-22
Data di Pubblicazione 2014-09-22
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore jchernus
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EasyMap",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Easily get directions to any address on a page!",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "popup.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "geolocation",
        "https:\/\/maps.google.com\/*",
        "https:\/\/maps.googleapis.com\/*"
    ],
    "browser_action": {
        "default_icon": "menuIcon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/maps.googleapis.com; img-src https:\/\/maps.google.com"
}