TradingNotes
Attach floating notes to your TradingView's stock lists
TradingNotes là gì?
TradingNotes là một tiện ích mở rộng Chrome được phát triển bởi XYZET, và tính năng chính của nó là "Attach floating notes to your TradingView's stock lists".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng TradingNotes
Tải xuống các tệp mở rộng TradingNotes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
View your stocks comments, at a glance, with colorful floating notes inside your TradingView platform. Features: - Show stock stats on ticker hover: Daily update of stocks statistics, like "Market cap" and "Shares float". - 3 Notes colors to choose from. - Wide note option. - Trim long text option. - Make use of TradingView's native notes system. - Easy tick to enable or disable the feature. - Show stock stats: Daily update of stocks statistics, like "Market cap" and "Shares float". How to use ? - Install the plugin. - For the first time after install, refresh the TradingView web page. - Mouse over the stock ticker to show your notes. - For more information visit: https://www.xyzet.me/tradingnotes * "Show stock stats" feature, automatically fetches the stock's statistics from available information found on the web. This information is unverified and you should always verify it yourself before making any trade decision. * TradingView is a leading charting platform and social network that is used by traders and investors to analyze the stock markets and other financial assets.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | TradingNotes |
ID | dnjklknajgggmmbhhkaeogobiibkjmgk |
URL Chính Thức | https://chromewebstore.google.com/detail/tradingnotes/dnjklknajgggmmbhhkaeogobiibkjmgk |
Mô tả | Attach floating notes to your TradingView's stock lists |
Kích Thước Tệp | 1.07 MB |
Số Lần Cài Đặt | 149 |
Phiên Bản Hiện Tại | 3.6 |
Cập Nhật Lần Cuối | 2023-11-11 |
Ngày Phát Hành | 2022-01-15 |
Đánh Giá | 4.50/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | XYZET |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.xyzet.me/tradingnotes |
URL Trang Trợ Giúp | https://www.xyzet.me/tradingnotes |
URL Trang Chính Sách Bảo Mật | https://www.xyzet.me/tradingnotes |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TradingNotes", "description": "Attach floating notes to your TradingView's stock lists", "version": "3.6", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.tradingview\/*", "https:\/\/finviz.com\/*", "https:\/\/elite.finviz.com\/*", "https:\/\/finance.yahoo.com\/*", "https:\/\/guce.yahoo.com\/*", "https:\/\/*.yahoo.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.tradingview.com\/*", "https:\/\/tradingview.com\/*" ], "js": [ "content.js" ], "css": [ "fix.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "icon16.png", "icon48.png", "icon128.png" ], "matches": [ "https:\/\/www.tradingview\/*", "https:\/\/tradingview.com\/*" ] } ], "background": { "service_worker": ".\/background.js", "type": "module" }, "action": { "default_title": "TradingNotes", "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |