CoinMarketCal to Google Calendar
Adds an option on CoinMarketCal events to automatically add them to Google Calendar
Cos'è CoinMarketCal to Google Calendar?
CoinMarketCal to Google Calendar è un'estensione di Chrome sviluppata da Pedro Gontjo, e la sua funzione principale è "Adds an option on CoinMarketCal events to automatically add them to Google Calendar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CoinMarketCal to Google Calendar
Scarica i file di estensione CoinMarketCal to Google Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | CoinMarketCal to Google Calendar |
ID | kmccnbamdhpjlgfbalgelkanpfimainl |
URL Ufficiale | https://chromewebstore.google.com/detail/coinmarketcal-to-google-c/kmccnbamdhpjlgfbalgelkanpfimainl |
Descrizione | Adds an option on CoinMarketCal events to automatically add them to Google Calendar |
Dimensione del File | 44.03 KB |
Conteggio Installazioni | 31 |
Versione Corrente | 0.0.0.3 |
Ultimo Aggiornamento | 2018-02-27 |
Data di Pubblicazione | 2018-02-27 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Pedro Gontjo |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |