What Cashtag?

What Cashtag?

See up-to-date company info and price data for any cashtag on Twitter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "What Cashtag?",
  "version": "1.1",
  "description": "See up-to-date company info and price data for any cashtag on Twitter.",
  "author": "Ben Edelstein",
  "icons": {
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_48.png"
    },
    "default_popup": "popup.html",
    "default_title": "What Cashtag?"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/search?q=%24*",
        "http://twitter.com/search?q=%24*"
      ],
      "run_at": "document_idle",
      "css": [
        "content.css"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "plotly-basic.min.js",
        "stocks.js",
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/alert.png",
    "images/checkmark.png"
  ],
  "permissions": [
    "webNavigation",
    "*://twitter.com/*",
    "storage"
  ]
}