Nirvana HQ Add to Calendar Feature
This extension will add an context option 'Add to Google Calender' on right click context of every item.
Co to jest Nirvana HQ Add to Calendar Feature?
Nirvana HQ Add to Calendar Feature to rozszerzenie Chrome opracowane przez Matt, a jego główną funkcją jest „This extension will add an context option 'Add to Google Calender' on right click context of every item.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Nirvana HQ Add to Calendar Feature
Pobierz pliki rozszerzeń Nirvana HQ Add to Calendar Feature w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | enfogplbopdmdjhnigjaijcnacjlcpme |
| Oficjalny URL | https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme |
| Opis | This extension will add an context option 'Add to Google Calender' on right click context of every item. |
| Rozmiar pliku | 132 KB |
| Liczba instalacji | 499 |
| Aktualna Wersja | 0.0.0.3 |
| Ostatnia Aktualizacja | 2016-12-08 |
| Data Publikacji | 2016-12-08 |
| Ocena | 3.64/5 Łącznie 11 Oceny |
| Deweloper | Matt |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |