Robinhood Helper
When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!
Robinhood Helper là gì?
Robinhood Helper là một tiện ích mở rộng Chrome được phát triển bởi kyle.challis, và tính năng chính của nó là "When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!".
Tải xuống tệp CRX của tiện ích mở rộng Robinhood Helper
Tải xuống các tệp mở rộng Robinhood Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ![]() |
ID | jigjoibbpjlnijbaabodmklhegpkkojc |
URL Chính Thức | https://chrome.google.com/webstore/detail/robinhood-helper/jigjoibbpjlnijbaabodmklhegpkkojc |
Mô tả | When using a Finviz screener, this extension will open all tickers in Robinhood in new tabs. More features to come! |
Kích Thước Tệp | 34.62 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2018-05-10 |
Ngày Phát Hành | 2018-05-10 |
Nhà Phát Triển | kyle.challis |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |