Calendar Location Helper

Modify Google Calendar to help pick locations of a map

什么是Calendar Location Helper?

Calendar Location Helper是由roopak.v开发的Chrome扩展程序,该扩展的主要功能是“Modify Google Calendar to help pick locations of a map”。

扩展截图

screenshot

下载Calendar Location Helper扩展crx文件

下载Calendar Location Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Calendar Location Helper Calendar Location Helper
ID gepgdhgppljdcdohapjpjoiodhlmgjgb
官方URL https://chrome.google.com/webstore/detail/calendar-location-helper/gepgdhgppljdcdohapjpjoiodhlmgjgb
简介 Modify Google Calendar to help pick locations of a map
文件大小 99.05 KB
安装次数 10
当前版本 0.0.1
更新时间 2013-11-17
上架时间 2013-11-17
评分 3.00/5 共1次评分
开发者 roopak.v
付费类型 free
支持的语言 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"
        }
    ]
}