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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Stock Quotes Loaded |
ID | fkacbjkdecbicbdmgnljcnjkecjfhmfd |
공식 URL | 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" ] } |