Stock Hover
View candlestick charts without leaving Twitter.
Stock Hoverคืออะไร?
Stock Hover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Norman Wang และคุณลักษณะหลักของมันคือ "View candlestick charts without leaving Twitter."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stock Hover
ดาวน์โหลดไฟล์ส่วนขยาย Stock Hover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*" ] } ] } |