Chartink To TradingView

Chartink To TradingView

Redirects Chartink Symbol Links to TradingView Chart

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Chartink To TradingView",
  "version": "2.2",
  "description": "Redirects Chartink Symbol Links to TradingView Chart",
  "icons": {
    "48": "icons/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.chartink.com/*"
      ],
      "js": [
        "main.js"
      ],
      "css": [
        "popup.css"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "clipboardWrite",
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}