Atomic Trade Insights
Atomic Trade inights for Robinhood traders
什么是Atomic Trade Insights?
Atomic Trade Insights是由Atomic Trade Insights开发的Chrome扩展程序,该扩展的主要功能是“Atomic Trade inights for Robinhood traders”。
扩展截图
下载Atomic Trade Insights扩展crx文件
下载Atomic Trade Insights扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
View the Profit & Loss for each trade you make on the RobinHood trading platform. Each trade is analyzed and calculated to get the exact profit or loss, click on the trade log to see the entries and exits for each trade.
扩展基本信息
名称 | Atomic Trade Insights |
ID | oeechecmndlmgiopngndagjlodpeoipb |
官方URL | https://chromewebstore.google.com/detail/atomic-trade-insights/oeechecmndlmgiopngndagjlodpeoipb |
简介 | Atomic Trade inights for Robinhood traders |
文件大小 | 211 KB |
安装次数 | 49 |
当前版本 | 0.0.1 |
更新时间 | 2019-03-06 |
上架时间 | 2019-03-06 |
评分 | 5.00/5 共1次评分 |
开发者 | Atomic Trade Insights |
付费类型 | free |
扩展官网 | https://scar-api.hypesteezy.com/terms |
帮助页面URL | https://scar-api.hypesteezy.com/terms |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Atomic Trade Insights", "version": "0.0.1", "description": "Atomic Trade inights for Robinhood traders", "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "browser_action": { "default_title": "Atomic Trade Insights", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/robinhood.com\/*" ], "js": [ "in-content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'", "offline_enabled": true, "permissions": [ "https:\/\/robinhood.com\/*" ] } |