TrendSpider

TrendSpider

An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TrendSpider",
  "description": "An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.",
  "version": "1.0.3.1",
  "icons": {
    "128": "/img/logo.png",
    "512": "/img/logo.png"
  },
  "action": {
    "default_popup": "/pages/popup/index.html"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "matches": [
        "*://*/*"
      ],
      "js": [
        "/lib/jquery.min.js",
        "/js/classes/Chromane.js",
        "/js/classes/Util.js",
        "/ts/Log.js",
        "/ts/Content.js",
        "/ts/Handlers.js",
        "/ts/Parser.js",
        "/js/content_script.js"
      ]
    },
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://charts.trendspider.com/mobile_chart*"
      ],
      "js": [
        "/js/mobile_chart_content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms",
    "cookies"
  ],
  "host_permissions": [
    "https://charts.trendspider.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "extension_ids": [
        "gcicjfgfahmcilbgpmkalhhkopobkdah"
      ]
    }
  ]
}