Queue

Queue

The easiest way to schedule tweets and threads for Notion users.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Queue",
  "description": "The easiest way to schedule tweets and threads for Notion users.",
  "icons": {
    "16": "/icon16.png",
    "32": "/icon32.png",
    "48": "/icon48.png",
    "128": "/icon128.png"
  },
  "host_permissions": [
    "https://www.notion.so/"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "cookies"
  ],
  "background": {
    "service_worker": "scripts/worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.notion.so/*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "extension_ids": [],
      "matches": [
        "https://www.notion.so/*"
      ],
      "resources": [
        "preload.js",
        "app.js",
        "assets/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.notion.so/*",
      "https://www.queue.so/*"
    ]
  },
  "version": "1.16.6"
}