GQueues for Gmail

GQueues for Gmail

Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GQueues for Gmail",
  "version": "1.3.0",
  "action": {},
  "description": "Turn emails into actionable tasks with GQueues - the task manager built for teams on Google Workspace.",
  "icons": {
    "16": "gqIcon16.png",
    "48": "gqIcon48.png",
    "128": "gqIcon128.png"
  },
  "author": "GQueues",
  "background": {
    "service_worker": "background.min.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "gqueues-gmail-ext.min.css"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "jquery-ui-1.11.2.min.js",
        "gqueues-gmail-ext.min.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://app.gqueues.com/gmailext?*",
        "https://www.gqueues.com/gmailext?*"
      ],
      "js": [
        "jquery-2.1.1.min.js",
        "login-content-script.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*.googleusercontent.com/*",
    "https://mail.google.com/*"
  ],
  "permissions": [
    "scripting",
    "storage"
  ],
  "content_security_policy": {},
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*",
        "get-globals.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ]
}