Stock Quotes Loaded
Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
Qu'est-ce que Stock Quotes Loaded ?
Stock Quotes Loaded est une extension Chrome développée par Dizzy Developments, et sa fonction principale est "Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Stock Quotes Loaded
Téléchargez les fichiers d'extension Stock Quotes Loaded au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Stock Quotes Loaded |
ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
URL Officiel | https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd |
Description | Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)" |
Taille du Fichier | 156 KB |
Nombre d'Installations | 70 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2016-01-27 |
Date de Publication | 2016-01-26 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Dizzy Developments |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |