CoinMarketCal to Google Calendar

Adds an option on CoinMarketCal events to automatically add them to Google Calendar

什么是CoinMarketCal to Google Calendar?

CoinMarketCal to Google Calendar是由Pedro Gontjo开发的Chrome扩展程序,该扩展的主要功能是“Adds an option on CoinMarketCal events to automatically add them to Google Calendar”。

扩展截图

screenshot
screenshot

下载CoinMarketCal to Google Calendar扩展crx文件

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

扩展使用说明

                        Very simple but useful extension that adds an icon in each CoinMarketCal event which once clicked opens Google Calendar "Add Event" page with all fields already filled.

Let me know if it was helpful for you.                    

扩展基本信息

名称 CoinMarketCal to Google Calendar CoinMarketCal to Google Calendar
ID kmccnbamdhpjlgfbalgelkanpfimainl
官方URL https://chromewebstore.google.com/detail/coinmarketcal-to-google-c/kmccnbamdhpjlgfbalgelkanpfimainl
简介 Adds an option on CoinMarketCal events to automatically add them to Google Calendar
文件大小 44.03 KB
安装次数 31
当前版本 0.0.0.3
更新时间 2018-02-27
上架时间 2018-02-27
评分 5.00/5 共1次评分
开发者 Pedro Gontjo
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CoinMarketCal to Google Calendar",
    "description": "Adds an option on CoinMarketCal events to automatically add them to Google Calendar",
    "version": "0.0.0.3",
    "permissions": [
        "https:\/\/coinmarketcal.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/coinmarketcal.com\/*"
            ],
            "js": [
                "moment.js",
                "contentscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "add.png"
    ],
    "icons": {
        "16": "add.png",
        "48": "add.png",
        "128": "add.png"
    }
}