SpeedyG

SpeedyG

Make Gmail effortless. SpeedyG is for professionals that like Gmail but want to streamline common steps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SpeedyG",
  "description": "Make Gmail effortless. SpeedyG is for professionals that like Gmail but want to streamline common steps.",
  "version": "0.0.1.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "16": "static/images/logos/logo16x16.png",
    "48": "static/images/logos/logo48x48.png",
    "128": "static/images/logos/logo128x128.png"
  },
  "action": {
    "default_title": "SpeedyG"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_idle",
      "js": [
        "gmail-content-script.bundle.js"
      ],
      "css": [
        "static/css/gmail-content-script.bundle.css"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*",
        "https://calendar.google.com/*"
      ],
      "run_at": "document_start",
      "js": [
        "sidebar-content-script-inject.bundle.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "sidebar-content-script.html",
        "sidebar-content-script.bundle.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://calendar.google.com/*"
      ]
    }
  ],
  "permissions": [
    "identity",
    "storage",
    "unlimitedStorage",
    "tabs",
    "scripting",
    "contextMenus"
  ],
  "host_permissions": [
    "https://dev.speedyg.app/api*",
    "https://calendar.google.com/*",
    "https://mail.google.com/*",
    "https://mail-attachment.googleusercontent.com/attachment/*"
  ]
}