Calendar Location Helper
Modify Google Calendar to help pick locations of a map
Co to jest Calendar Location Helper?
Calendar Location Helper to rozszerzenie Chrome opracowane przez roopak.v, a jego główną funkcją jest „Modify Google Calendar to help pick locations of a map”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Calendar Location Helper
Pobierz pliki rozszerzeń Calendar Location Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | gepgdhgppljdcdohapjpjoiodhlmgjgb |
Oficjalny URL | https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb |
Opis | Modify Google Calendar to help pick locations of a map |
Rozmiar pliku | 99.05 KB |
Liczba instalacji | 10 |
Aktualna Wersja | 0.0.1 |
Ostatnia Aktualizacja | 2013-11-17 |
Data Publikacji | 2013-11-17 |
Ocena | 3.00/5 Łącznie 1 Oceny |
Deweloper | roopak.v |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |