Stock Hover
View candlestick charts without leaving Twitter.
Stock Hoverとは何ですか?
Stock HoverはNorman Wangによって開発されたChromeの拡張機能で、その主な機能は「View candlestick charts without leaving Twitter.」です。
拡張機能のスクリーンショット
Stock Hover拡張機能のCRXファイルをダウンロード
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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\/*"
]
}
]
} | |