Ticksy

Ticksy

See real-time stock and crypto prices by hovering over Twitter cashtags.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Ticksy",
  "description": "See real-time stock and crypto prices by hovering over Twitter cashtags.",
  "version": "1.5.0",
  "icons": {
    "32": "favicon-32x32.png"
  },
  "browser_action": {
    "default_title": "Ticksy",
    "default_popup": "popup.html",
    "default_icon": {
      "32": "favicon-32x32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.twitter.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "popup/dom-to-image.min.js",
        "popup/popup.js",
        "popup/iex_api.js",
        "stiqur.js"
      ],
      "css": [
        "popup/popup.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "popup/stiqur_logo_fit.png",
    "popup/stiqur_load.svg",
    "popup/ticksy.png",
    "popup/twitter.svg",
    "*.woff2",
    "*.woff"
  ],
  "permissions": [
    "http://twitter.com/",
    "https://twitter.com/",
    "storage"
  ]
}