TrendSpider
An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.
TrendSpider란 무엇입니까?
TrendSpider은(는) https://trendspider.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage."입니다.
확장 프로그램 스크린샷
TrendSpider 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enables TrendSpider users to quickly and easily see a chart for any stock or crypto symbol they encounter on the web simply by hovering their mouse over the symbol in their browser. This makes the process of investment research online easier by giving users quick access to their TrendSpider charts, complete with indicators, drawings and automated pattern recognition. To use this extension, you need a valid and active TrendSpider account. You may authenticate your account after installing the extension. Please note, this is a BETA feature and may contain some bugs. If you encounter any issues, please report it to the TrendSpider support team and we will address them. Thank you and enjoy!
확장 프로그램 기본 정보
이름 | TrendSpider |
ID | kpmgohkagfcbhglaglpemcmockdahpjn |
공식 URL | https://chromewebstore.google.com/detail/trendspider/kpmgohkagfcbhglaglpemcmockdahpjn |
설명 | An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage. |
파일 크기 | 95.31 KB |
설치 횟수 | 1,716 |
현재 버전 | 1.0.3.1 |
최근 업데이트 | 2022-08-23 |
출시 날짜 | 2022-08-20 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | https://trendspider.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://trendspider.com |
도움말 페이지 URL | https://help.trendspider.com |
개인정보 보호 정책 페이지 URL | https://trendspider.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "TrendSpider", "description": "An extension that enables TrendSpider users to quickly see a chart whenever they encounter a ticker on a webpage.", "version": "1.0.3.1", "icons": { "128": "\/img\/logo.png", "512": "\/img\/logo.png" }, "action": { "default_popup": "\/pages\/popup\/index.html" }, "background": { "service_worker": "\/js\/background.js" }, "content_scripts": [ { "all_frames": false, "run_at": "document_start", "matches": [ "*:\/\/*\/*" ], "js": [ "\/lib\/jquery.min.js", "\/js\/classes\/Chromane.js", "\/js\/classes\/Util.js", "\/ts\/Log.js", "\/ts\/Content.js", "\/ts\/Handlers.js", "\/ts\/Parser.js", "\/js\/content_script.js" ] }, { "all_frames": true, "run_at": "document_start", "matches": [ "https:\/\/charts.trendspider.com\/mobile_chart*" ], "js": [ "\/js\/mobile_chart_content_script.js" ] } ], "permissions": [ "storage", "unlimitedStorage", "alarms", "cookies" ], "host_permissions": [ "https:\/\/charts.trendspider.com\/*" ], "web_accessible_resources": [ { "resources": [ "*" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "extension_ids": [ "gcicjfgfahmcilbgpmkalhhkopobkdah" ] } ] } |