FederAI - Create Amazing content with AI

FederAI - Create Amazing content with AI

FederAI is the AI Content Platform that helps you break through creative blocks to create amazing Twitter content 10X faster.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FederAI - Create Amazing content with AI",
  "version": "0.8.7",
  "description": "FederAI is the AI Content Platform that helps you break through creative blocks to create amazing Twitter content 10X faster.",
  "background": {
    "service_worker": "src/pages/background/index.js"
  },
  "action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentBridge/index.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle.chunk.css"
      ],
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png",
        "src/pages/popup/index.html"
      ],
      "matches": [
        "*://twitter.com/*",
        "*://*.twitter.com/*",
        "*://federai.co/*",
        "*://*.federai.co/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>",
    "https://www.googleapis.com/*",
    "https://gstatic.com/*",
    "*://*/*"
  ],
  "commands": {
    "open-feder": {
      "suggested_key": {
        "default": "Alt+Shift+P"
      },
      "description": "Open FederAI app"
    }
  }
}