Stock Quotes Loaded
Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
Cos'è Stock Quotes Loaded?
Stock Quotes Loaded è un'estensione di Chrome sviluppata da Dizzy Developments, e la sua funzione principale è "Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stock Quotes Loaded
Scarica i file di estensione Stock Quotes Loaded in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
| URL Ufficiale | https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd |
| Descrizione | Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)" |
| Dimensione del File | 156 KB |
| Conteggio Installazioni | 70 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2016-01-27 |
| Data di Pubblicazione | 2016-01-26 |
| Valutazione | 5.00/5 Totale 1 Valutazioni |
| Sviluppatore | Dizzy Developments |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |