TradingNotes
Attach floating notes to your TradingView's stock lists
TradingNotes란 무엇입니까?
TradingNotes은(는) XYZET에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Attach floating notes to your TradingView's stock lists"입니다.
확장 프로그램 스크린샷
TradingNotes 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | TradingNotes |
ID | dnjklknajgggmmbhhkaeogobiibkjmgk |
공식 URL | https://chromewebstore.google.com/detail/tradingnotes/dnjklknajgggmmbhhkaeogobiibkjmgk |
설명 | Attach floating notes to your TradingView's stock lists |
파일 크기 | 1.07 MB |
설치 횟수 | 149 |
현재 버전 | 3.6 |
최근 업데이트 | 2023-11-11 |
출시 날짜 | 2022-01-15 |
평점 | 4.50/5 총 8 개의 평점 |
개발자 | XYZET |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.xyzet.me/tradingnotes |
도움말 페이지 URL | https://www.xyzet.me/tradingnotes |
개인정보 보호 정책 페이지 URL | https://www.xyzet.me/tradingnotes |
지원되는 언어 | 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" } } |