Week Increment Google Calendar Custom View

Week Increment Google Calendar Custom View

Adds shortcuts to increment the custom week view for Google Calendar one week at a time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Week Increment Google Calendar Custom View",
  "version": "0.2",
  "description": "Adds shortcuts to increment the custom week view for Google Calendar one week at a time.",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "commands": {
    "01-up-week": {
      "suggested_key": {
        "default": "Ctrl+Up"
      },
      "description": "Go backward one week in X-weeks custom view"
    },
    "02-down-week": {
      "suggested_key": {
        "default": "Ctrl+Down"
      },
      "description": "Go forward one week in X-weeks custom view"
    }
  },
  "manifest_version": 3
}