Stock Quotes Loaded
Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
什麼是Stock Quotes Loaded?
Stock Quotes Loaded是由Dizzy Developments開發的Chrome擴展程式,該擴展的主要功能是“Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"”。
擴展截圖
下載Stock Quotes Loaded擴展crx文件
下載Stock Quotes Loaded擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
| 官方網址 | https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd |
| 簡介 | Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)" |
| 檔案大小 | 156 KB |
| 安裝次數 | 70 |
| 目前版本 | 1.1 |
| 更新時間 | 2016-01-27 |
| 上架時間 | 2016-01-26 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Dizzy Developments |
| 付費類型 | free |
| 支援的語言 | 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"
]
} | |