Spread

Spread

Effortlessly manage your tweets with Spread - Your personal AI assistant for social media!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.0",
  "name": "Spread",
  "short_name": "Spread",
  "description": "Effortlessly manage your tweets with Spread - Your personal AI assistant for social media!",
  "action": {
    "default_popup": "./dist/index.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://api.spreadapp.ai/auth/twitter/callback*"
      ],
      "run_at": "document_start",
      "js": [
        "auth.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "notifications",
    "alarms"
  ]
}