Algosys Tradingview Extention

Algosys Tradingview Extention

Send automated & Manual Alerts to ALGOSYS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Algosys Tradingview Extention",
  "description": "Send automated & Manual Alerts to ALGOSYS",
  "version": "1.2",
  "content_scripts": [
    {
      "matches": [
        "*://*.tradingview.com/*"
      ],
      "all_frames": true,
      "js": [
        "content.js",
        "jquery.min.js"
      ],
      "css": [
        "button.css"
      ]
    }
  ],
  "action": {
    "default_icon": "128.png",
    "default_title": "Algosys Extn",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "declarativeContent",
    "storage"
  ],
  "host_permissions": [
    "https://trade.algosys.co.in/*"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.tradingview.com/*"
    ]
  },
  "icons": {
    "48": "48.png",
    "128": "128.png"
  }
}