Calendar Location Helper

Modify Google Calendar to help pick locations of a map

Was ist Calendar Location Helper?

Calendar Location Helper ist eine Chrome-Erweiterung, die von roopak.v entwickelt wurde, und ihr Hauptmerkmal ist "Modify Google Calendar to help pick locations of a map".

Erweiterungsscreenshots

screenshot

Calendar Location Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Calendar Location Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
Offizielle URL https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
Beschreibung Modify Google Calendar to help pick locations of a map
Dateigröße 99.05 KB
Installationsanzahl 10
Aktuelle Version 0.0.1
Letztes Update 2013-11-17
Veröffentlichungsdatum 2013-11-17
Bewertung 3.00/5 Insgesamt 1 Bewertungen
Entwickler roopak.v
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}