Picasso: Google Calendar theme

Picasso: Google Calendar theme

You know how you use the Google Calendar but you hate yourself a little bit because the UI is kind of ugly and hasn't been updated in about 5 years? Wouldn't you wish it was flatter and nicer and had less shit? Cool, me too.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Picasso - A Google Calendar theme",
  "description": "A prettier Google Calendar theme",
  "version": "1.2.0",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "https://calendar.google.com/*"
      ]
    }
  ],
  "icons": {
    "128": "logo.png"
  },
  "applications": {
    "gecko": {
      "id": "picasso-google-calendar@example"
    }
  }
}