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”。
擴展截圖
下載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 |
ID | kmccnbamdhpjlgfbalgelkanpfimainl |
官方網址 | 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" } } |