G-CAL Highlighter

G-CAL Highlighter

Google Calendar

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.7.0",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{d6f50dce-cee8-4ebd-a5e1-58d0cdfaf0b9}",
      "strict_min_version": "90.0"
    }
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "js/content_main.js"
      ],
      "matches": [
        "http://*.google.com/calendar/*",
        "https://*.google.com/calendar/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "js/*",
    "css/*",
    "img/*",
    "css/fonts/*",
    "html/*",
    "_locales/*"
  ],
  "browser_action": {
    "default_icon": "img/g-cal-icon_64.png"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "alarms",
    "tabs",
    "*://*.google.com/*"
  ],
  "icons": {
    "64": "img/g-cal-icon_64.png",
    "100": "img/g-cal-icon_100.png",
    "128": "img/g-cal-icon_128.png",
    "512": "img/g-cal-icon_512.png"
  },
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__"
}