Calendar + for Google Chrome™

Calendar + for Google Chrome™

Add clickable urls to Google Calendar Detail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Calendar + for Google Chrome™",
  "version": "1.3.0",
  "author": "Sinesy s.r.l.",
  "offline_enabled": true,
  "short_name": "Calendar +",
  "description": "Add clickable urls to Google Calendar Detail",
  "icons": {
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "permissions": [
    "tabs"
  ],
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.google.com/*",
        "https://*.google.com/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "calendar-changer.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "homepage_url": "http://www.sinesy.it"
}