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 - это расширение Chrome, разработанное Pedro Gontjo, и его основная функция - "Adds an option on CoinMarketCal events to automatically add them to Google Calendar".
Снимки экрана расширения
Скачать файл CRX расширения CoinMarketCal to Google Calendar
Скачайте файлы расширений 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 |
Официальный 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" } } |