Stock Quotes Loaded

Stock Quotes Loaded

Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stock Quotes Loaded",
  "description": "Adds tooltips to stock market tickers, \"Symbol (StockExchange): Bid / Ask (Change, PercentChange)\"",
  "version": "1.1",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*.html"
      ],
      "css": [
        "content/content.css"
      ],
      "js": [
        "lib/jquery.js",
        "lib/findAndReplaceDOMText.js",
        "lib/sprintf.min.js",
        "lib/markets.js",
        "content/content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    "images/icon16.png",
    "images/icon48.png",
    "images/icon128.png"
  ]
}