Robinhood Helper
When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!
什么是Robinhood Helper?
Robinhood Helper是由kyle.challis开发的Chrome扩展程序,该扩展的主要功能是“When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!”。
下载Robinhood Helper扩展crx文件
下载Robinhood Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs.
More features to come! 扩展基本信息
| 名称 | |
| ID | jigjoibbpjlnijbaabodmklhegpkkojc |
| 官方URL | https://chrome.google.com/webstore/detail/robinhood-helper/jigjoibbpjlnijbaabodmklhegpkkojc |
| 简介 | When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come! |
| 文件大小 | 34.62 KB |
| 安装次数 | 37 |
| 当前版本 | 1.0 |
| 更新时间 | 2018-05-10 |
| 上架时间 | 2018-05-10 |
| 开发者 | kyle.challis |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Robinhood Helper",
"version": "1.0",
"content_scripts": [
{
"matches": [
"https:\/\/*.finviz.com\/*"
],
"js": [
"jquery-2.2.4.min.js",
"content.js"
]
}
],
"browser_action": {
"default_title": "Robinhood Helper",
"commented": {
"default_icon": "icon.png",
"default_popup": "popup.html"
}
},
"background": {
"scripts": [
"background.js"
]
}
} | |