AddTagsToGoogleCalendar

AddTagsToGoogleCalendar

You can add tags to your google calendar with this extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AddTagsToGoogleCalendar",
  "description": "You can add tags to your google calendar with this extension",
  "default_locale": "en",
  "version": "0.1",
  "icons": {
    "16": "/image/icon16.png",
    "48": "/image/icon48.png",
    "128": "/image/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/r/*",
        "https://calendar.google.com/calendar/r/day/*",
        "https://calendar.google.com/calendar/r/customday/*",
        "https://calendar.google.com/calendar/r/week/*"
      ],
      "js": [
        "/js/content_scripts.js"
      ],
      "css": [
        "/css/content_scripts.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "19": "/image/icon19.png"
    },
    "default_title": "AddTagsToGoogleCalendar",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "declarativeContent",
    "storage"
  ],
  "author": "Kan Tachibana"
}