Nirvana HQ Add to Calendar Feature

This extension will add an context option 'Add to Google Calender' on right click context of every item.

Wat is Nirvana HQ Add to Calendar Feature?

Nirvana HQ Add to Calendar Feature is een Chrome-extensie ontwikkeld door Matt, en de belangrijkste functie is "This extension will add an context option 'Add to Google Calender' on right click context of every item.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Nirvana HQ Add to Calendar Feature

Download Nirvana HQ Add to Calendar Feature-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Nirvana HQ Add to Calendar Feature Nirvana HQ Add to Calendar Feature
ID enfogplbopdmdjhnigjaijcnacjlcpme
Officiële URL https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme
Beschrijving This extension will add an context option 'Add to Google Calender' on right click context of every item.
Bestandsgrootte 132 KB
Aantal Installaties 499
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2016-12-08
Publicatiedatum 2016-12-08
Beoordeling 3.64/5 Totaal 11 Beoordelingen
Ontwikkelaar Matt
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}