Super Calendar

Save any interesting event information into calendar form. Export events directly to multipul calenders.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_manifestName__",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "__MSG_manifestDescription__",
  "icons": {
    "16": "icons/logo16.png",
    "32": "icons/logo32.png",
    "48": "icons/logo48.png",
    "128": "icons/logo128.png"
  },
  "permissions": [
    "background",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icons/logo48.png",
    "default_title": "Super Calendar",
    "default_popup": "pages/popup/index.html"
  },
  "web_accessible_resources": [
    "pages/**.*"
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}