Calendar Location Helper

Modify Google Calendar to help pick locations of a map

Wat is Calendar Location Helper?

Calendar Location Helper is een Chrome-extensie ontwikkeld door roopak.v, en de belangrijkste functie is "Modify Google Calendar to help pick locations of a map".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Calendar Location Helper

Download Calendar Location Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
Officiële URL https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
Beschrijving Modify Google Calendar to help pick locations of a map
Bestandsgrootte 99.05 KB
Aantal Installaties 10
Huidige Versie 0.0.1
Laatst Bijgewerkt 2013-11-17
Publicatiedatum 2013-11-17
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar roopak.v
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}