Stock Quotes Loaded
Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
Apa itu Stock Quotes Loaded?
Stock Quotes Loaded adalah ekstensi Chrome yang dikembangkan oleh Dizzy Developments, dan fitur utamanya adalah "Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Stock Quotes Loaded
Unduh file ekstensi Stock Quotes Loaded dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Stock Quotes Loaded |
ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
URL Resmi | https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd |
Deskripsi | Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)" |
Ukuran File | 156 KB |
Jumlah Instalasi | 70 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2016-01-27 |
Tanggal Publikasi | 2016-01-26 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Dizzy Developments |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } |