Nirvana HQ Add to Calendar Feature
This extension will add an context option 'Add to Google Calender' on right click context of every item.
Cos'è Nirvana HQ Add to Calendar Feature?
Nirvana HQ Add to Calendar Feature è un'estensione di Chrome sviluppata da Matt, e la sua funzione principale è "This extension will add an context option 'Add to Google Calender' on right click context of every item.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Nirvana HQ Add to Calendar Feature
Scarica i file di estensione Nirvana HQ Add to Calendar Feature 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
This extension will give you the ability to right click on a TODO item in the webapp Nirvana HQ and add that item to your google calendar. You must be logged into google calendar for this to work.
Informazioni di Base sull'Estensione
Nome | ![]() |
ID | enfogplbopdmdjhnigjaijcnacjlcpme |
URL Ufficiale | https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme |
Descrizione | This extension will add an context option 'Add to Google Calender' on right click context of every item. |
Dimensione del File | 132 KB |
Conteggio Installazioni | 499 |
Versione Corrente | 0.0.0.3 |
Ultimo Aggiornamento | 2016-12-08 |
Data di Pubblicazione | 2016-12-08 |
Valutazione | 3.64/5 Totale 11 Valutazioni |
Sviluppatore | Matt |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Nirvana HQ Add to Calendar Feature", "version": "0.0.0.3", "description": "This extension will add an context option 'Add to Google Calender' on right click context of every item.", "background": { "page": "background.html" }, "manifest_version": 2, "browser_action": { "name": "Manipulate DOM", "icons": [ "icon.png" ], "default_icon": "icon.png" }, "commands": { "random": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Load a random link" } }, "content_scripts": [ { "js": [ "jquery.min.js", "background.js" ], "matches": [ "https:\/\/focus.nirvanahq.com\/" ] } ], "permissions": [ "activeTab" ] } |