Nirvana HQ Add to Calendar Feature
This extension will add an context option 'Add to Google Calender' on right click context of every item.
What is Nirvana HQ Add to Calendar Feature?
Nirvana HQ Add to Calendar Feature is a Chrome extension developed by Matt, and its main feature is "This extension will add an context option 'Add to Google Calender' on right click context of every item.".
Extension Screenshots
Download Nirvana HQ Add to Calendar Feature Extension CRX File
Download Nirvana HQ Add to Calendar Feature extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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. Extension Basic Information
| Name | |
| ID | enfogplbopdmdjhnigjaijcnacjlcpme |
| Official URL | https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme |
| Description | This extension will add an context option 'Add to Google Calender' on right click context of every item. |
| File Size | 132 KB |
| Installation Count | 499 |
| Current Version | 0.0.0.3 |
| Last Updated | 2016-12-08 |
| Publish Date | 2016-12-08 |
| Rating | 3.64/5 Total 11 Ratings |
| Developer | Matt |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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"
]
} | |