Orbitt Pro AI

Orbitt Pro AI

Orbitt PROs uniquely combines AI prowess and a convenient Chrome Extension, redefining the cryptocurrency trading experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "version": "0.0.1",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "storage",
    "sidePanel"
  ],
  "host_permissions": [
    "https://orbitt.pro/api/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "side_panel": {
    "default_path": "src/pages/sidepanel/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.tradingview.com/x/*",
        "https://orbitt.pro/auth"
      ],
      "js": [
        "src/pages/content/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-32.png",
        "orbitt_ready.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}