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文件
下载TrendSpider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" ] } ] } |