Tribe

Tribe

Invest better and together with Tribe

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "index.html"
  ],
  "version": "1.0.11",
  "manifest_version": 2,
  "name": "Tribe",
  "description": "Invest better and together with Tribe",
  "browser_action": {
    "default_icon": "assets/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "https://*/*",
        "http://*/*",
        "https://kite.zerodha.com/",
        "https://in.tradingview.com/",
        "https://sensibull.com/"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ],
  "permissions": [
    "https://expert.investwithtribe.com/api/",
    "cookies",
    "*://*/*",
    "api.whatsapp.com",
    "https://telegram.me"
  ],
  "background": {
    "scripts": [
      "js/background.bundle.js"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}