Aster - Prepare your meetings efficiently

Aster - Prepare your meetings efficiently

With Aster take more decisions in meetings, and give them all their meaning!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_application_title__",
  "short_name": "Aster",
  "description": "__MSG_application_description__",
  "version": "4.0.1",
  "default_locale": "en",
  "action": {
    "default_icon": "favicon.png",
    "default_popup": "index.html#/messages/create"
  },
  "offline_enabled": false,
  "host_permissions": [
    "https://*.asterapp.io/*"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "tabs",
    "identity",
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/css/*",
        "assets/js/*",
        "assets/fonts/*",
        "assets/img/*",
        "en/*",
        "index.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "background": {
    "service_worker": "assets/js/chrome-extension/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/r*",
        "https://calendar.google.com/calendar/b/*/r*",
        "https://calendar.google.com/calendar/u/*/r*"
      ],
      "js": [
        "assets/js/chrome-extension/googleCalendarSidePanel.js",
        "assets/js/chrome-extension/googleCalendarButton.js"
      ],
      "css": [
        "assets/css/chrome-extension/googleCalendarSidePanel.css",
        "assets/css/chrome-extension/googleCalendarButton.css"
      ]
    }
  ]
}