Nirvana HQ Add to Calendar Feature
This extension will add an context option 'Add to Google Calender' on right click context of every item.
什麼是Nirvana HQ Add to Calendar Feature?
Nirvana HQ Add to Calendar Feature是由Matt開發的Chrome擴展程式,該擴展的主要功能是“This extension will add an context option 'Add to Google Calender' on right click context of every item.”。
擴展截圖
下載Nirvana HQ Add to Calendar Feature擴展crx文件
下載Nirvana HQ Add to Calendar Feature擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | ![]() |
ID | enfogplbopdmdjhnigjaijcnacjlcpme |
官方網址 | https://chrome.google.com/webstore/detail/nirvana-hq-add-to-calenda/enfogplbopdmdjhnigjaijcnacjlcpme |
簡介 | This extension will add an context option 'Add to Google Calender' on right click context of every item. |
檔案大小 | 132 KB |
安裝次數 | 499 |
目前版本 | 0.0.0.3 |
更新時間 | 2016-12-08 |
上架時間 | 2016-12-08 |
評分 | 3.64/5 共 11 次評分 |
開發者 | Matt |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |