Calendar Express for Google Forms™

Calendar Express for Google Forms™

1-click sidebar to see your calendar as you fill out forms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgZ2SUTzLUnBwV6DND2g6ehMMS0bNOedavVUHy1aAXnNrdMW8wKULAZdgYOqNqUCAK4DLO2bw529t05DwXGYkMGtfzvwI01K5SlZuSo033YdPulTK2hgDxn0b6bcH/XyOLzFVEl1wKrLQLXoBjRX1SyGNTsHIbYg9Zdn4Mvk7miYofJR/I8pAM33dyPaT5FqnotX1q8aGPF5e0VhJI4T2RRYnNNyb+7pdGkcBfTpiHWqxigEKH+VbBvqduZk+Q7f3hqyvP68YyGh4WKyla26gAz7V4mXNWGpKvsNezkESI99Qa5yJstKSB6EZWzSXyjZDGKaBNURuT6cW18EJjXrIrQIDAQAB",
  "name": "Calendar Express for Google Forms™",
  "short_name": "Calendar Express",
  "description": "1-click sidebar to see your calendar as you fill out forms",
  "version": "1.0",
  "oauth2": {
    "client_id": "995731707946-4r5bkddcag8n0jvrhosb81o5kjuenlep.apps.googleusercontent.com",
    "scopes": [
      ""
    ]
  },
  "permissions": [
    "declarativeContent"
  ],
  "action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png"
    },
    "default_title": "View your Google Calendar"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://docs.google.com/forms/*/edit*",
        "https://docs.google.com/forms/*/viewform*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}