Ticksy
See real-time stock and crypto prices by hovering over Twitter cashtags.
Ticksyคืออะไร?
Ticksy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://hshaikh.com และคุณลักษณะหลักของมันคือ "See real-time stock and crypto prices by hovering over Twitter cashtags."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ticksy
ดาวน์โหลดไฟล์ส่วนขยาย Ticksy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Provides prices for stocks and crypto when you hover over ticker symbols ($TSLA, $BTC), also known as cashtags on Twitter Ticksy extension is a simple and useful tool to let you view real time stock and crypto prices, right on Twitter, when you hover on a cashtag. Simply hover on a given stock cashtag in any of the Tweets in your feed and see real-time stock price, as well as additional data such as market cap, volume and shares outstanding. For cryptocurrencies, the extension also shows real-time stock prices as well as 24 hour High and Low price data and the 24hr volume for the cryptocurrency. Unlike other similar extensions, this extension does not open an external webpage for price and the extension does not require logging in to Twitter to see the prices. It does not require any permissions besides storage (so if you hover over a cashtag very frequently, instead of a new API call, the local storage shows the latest price data)
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Ticksy |
ID | ampcecklneicdcibnhahchimnmhdndlb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/ticksy/ampcecklneicdcibnhahchimnmhdndlb |
คำอธิบาย | See real-time stock and crypto prices by hovering over Twitter cashtags. |
ขนาดไฟล์ | 385 KB |
จำนวนการติดตั้ง | 323 |
เวอร์ชันปัจจุบัน | 1.5.0 |
อัปเดตครั้งล่าสุด | 2022-04-06 |
วันที่เผยแพร่ | 2021-12-08 |
คะแนน | 4.50/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | https://hshaikh.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ticksy", "description": "See real-time stock and crypto prices by hovering over Twitter cashtags.", "version": "1.5.0", "icons": { "32": "favicon-32x32.png" }, "browser_action": { "default_title": "Ticksy", "default_popup": "popup.html", "default_icon": { "32": "favicon-32x32.png" } }, "content_scripts": [ { "matches": [ "http:\/\/www.twitter.com\/*", "https:\/\/twitter.com\/*" ], "js": [ "popup\/dom-to-image.min.js", "popup\/popup.js", "popup\/iex_api.js", "stiqur.js" ], "css": [ "popup\/popup.css" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "popup\/stiqur_logo_fit.png", "popup\/stiqur_load.svg", "popup\/ticksy.png", "popup\/twitter.svg", "*.woff2", "*.woff" ], "permissions": [ "http:\/\/twitter.com\/", "https:\/\/twitter.com\/", "storage" ] } |