Stock Hover
View candlestick charts without leaving Twitter.
Stock Hover란 무엇입니까?
Stock Hover은(는) Norman Wang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View candlestick charts without leaving Twitter."입니다.
확장 프로그램 스크린샷
Stock Hover 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Displays candlestick charts when you hover over $ stock/crypto tags on Twitter. Catch up with the hottest stock and crypto price movements quickly and easily. Features: - Hover Over $ Tickers on Twitter and View Charts Without Leaving Twitter. - Create and Add Tickers to Watchlist with a Press of a Button. - Switch and View Charts Between Multiple Time Frames. - Customize Charts by Adding Indicators.
확장 프로그램 기본 정보
이름 | Stock Hover |
ID | bnmmdnmoejecmdjbidpefhlbophdkkkl |
공식 URL | https://chromewebstore.google.com/detail/stock-hover/bnmmdnmoejecmdjbidpefhlbophdkkkl |
설명 | View candlestick charts without leaving Twitter. |
파일 크기 | 157 KB |
설치 횟수 | 1,772 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2022-05-26 |
출시 날짜 | 2022-04-18 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Norman Wang |
이메일 | [email protected] |
결제 유형 | in_app |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Stock Hover", "version": "1.1.2", "description": "View candlestick charts without leaving Twitter.", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*", "https:\/\/extensionpay.com\/*" ], "js": [ "content\/import-index.js", "content\/import-tv.js", "import-ExtPayContent.js" ], "css": [ "popup.css" ], "run_at": "document_start", "all_frames": true } ], "permissions": [ "storage" ], "action": { "default_popup": "pages\/popup\/index.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "chunks\/*-*.js", "content\/index.js", "content\/tv.js", "ExtPayContent.js" ], "matches": [ "https:\/\/twitter.com\/*", "https:\/\/tweetdeck.twitter.com\/*", "https:\/\/extensionpay.com\/*" ] } ] } |