WorkFlowy to Google Calendar

WorkFlowy to Google Calendar

Add a WorkFlowy bullet (or any webpage) to Google Calendar in two clicks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WorkFlowy to Google Calendar",
  "description": "Add a WorkFlowy bullet (or any webpage) to Google Calendar in two clicks.",
  "version": "3.2.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "2GCal-128b.png",
    "default_title": "Create Google Calendar Event"
  },
  "icons": {
    "128": "2GCal-128b.png"
  },
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage"
  ]
}