Stock Quotes Loaded
Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
What is Stock Quotes Loaded?
Stock Quotes Loaded is a Chrome extension developed by Dizzy Developments, and its main feature is "Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"".
Extension Screenshots
Download Stock Quotes Loaded Extension CRX File
Download Stock Quotes Loaded extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Stock Quotes Loaded identifies stock symbols in webpages and adds a tooltip with (delayed) quote information. Someone asked for this on reddit's /r/stocks, this is a very early edition for those who want to try it out and give me some feedback before I add more features. So if you want different info, additional markets, etc, let me know! Currently supports NASDAQ / NYSE quotes. More to come.
Extension Basic Information
Name | Stock Quotes Loaded |
ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
Official URL | https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd |
Description | Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)" |
File Size | 156 KB |
Installation Count | 70 |
Current Version | 1.1 |
Last Updated | 2016-01-27 |
Publish Date | 2016-01-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Dizzy Developments |
Payment Type | free |
Supported Languages | en-US |
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" ] } |