Calendar Location Helper

Modify Google Calendar to help pick locations of a map

Cos'è Calendar Location Helper?

Calendar Location Helper è un'estensione di Chrome sviluppata da roopak.v, e la sua funzione principale è "Modify Google Calendar to help pick locations of a map".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Calendar Location Helper

Scarica i file di estensione Calendar Location Helper 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

                        Very simple app that allows you to select places for meetings on Google Calendar using Google Maps.

The advantage is that if you use the addresses generated by this, it is most likely good enough for Google Now to notify you "n minutes" before it is time to leave.                    

Informazioni di Base sull'Estensione

Nome Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
URL Ufficiale https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
Descrizione Modify Google Calendar to help pick locations of a map
Dimensione del File 99.05 KB
Conteggio Installazioni 10
Versione Corrente 0.0.1
Ultimo Aggiornamento 2013-11-17
Data di Pubblicazione 2013-11-17
Valutazione 3.00/5 Totale 1 Valutazioni
Sviluppatore roopak.v
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Calendar Location Helper",
    "version": "0.0.1",
    "description": "Modify Google Calendar to help pick locations of a map",
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "web_accessible_resources": [
        "jquery.min.map",
        "marker.jpg"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*.google.com\/calendar*",
                "https:\/\/*.google.com\/calendar*"
            ],
            "run_at": "document_start"
        }
    ]
}