Lasertoast Trading Suite
Improvements to the Ustocktrade interface for a better trading experience.
什么是Lasertoast Trading Suite?
Lasertoast Trading Suite是由http://lasertoast.io开发的Chrome扩展程序,该扩展的主要功能是“Improvements to the Ustocktrade interface for a better trading experience.”。
扩展截图
下载Lasertoast Trading Suite扩展crx文件
下载Lasertoast Trading Suite扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Enhance the Ustocktrade interface by making it friendlier for high-speed day trading. Configure presets for one-click Buy and Sell orders. One-click price nudging, option to auto-confirm the pesky confirm modal, hotkeys, auto-fill by percentage of shares, auto create multiple orders in a single click, and more!
扩展基本信息
名称 | |
ID | ilhhffnbhfdepndhpnmbopkeopgimobd |
官方URL | https://chrome.google.com/webstore/detail/ilhhffnbhfdepndhpnmbopkeopgimobd |
简介 | Improvements to the Ustocktrade interface for a better trading experience. |
文件大小 | 482 KB |
安装次数 | 101 |
当前版本 | 4.3.1 |
更新时间 | 2020-07-18 |
上架时间 | 2020-06-18 |
评分 | 4.38/5 共8次评分 |
开发者 | http://lasertoast.io |
电子邮箱 | [email protected] |
付费类型 | in_app |
扩展官网 | https://www.lasertoast.io |
隐私政策页面URL | https://lasertoast.io/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lasertoast Trading Suite", "short_name": "UES", "version": "4.3.1", "description": "Improvements to the Ustocktrade interface for a better trading experience.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "background": { "persistent": false, "scripts": [ "js\/env.js", "js\/moment.js", "js\/jquery-3.3.1.min.js", "js\/jwt-decode.min.js", "js\/auth0chrome.min.js", "js\/background_script.js" ] }, "permissions": [ "*:\/\/webux.ustocktrade.com\/*", "*:\/\/webux.ustocktrain.com\/*", "contextMenus", "activeTab", "storage", "declarativeContent", "notifications", "identity" ], "page_action": { "default_icon": "images\/icon-16.png", "default_popup": "options.html" }, "web_accessible_resources": [ "templates\/*.handlebars", "images\/*.png", "options.html", "https:\/\/lasertoast.io\/img\/logo-120.png", "http:\/\/lasertoast.io\/img\/logo-120.png", "https:\/\/fonts.gstatic.com\/s\/materialicons\/v41\/flUhRq6tzZclQEJ-Vdg-IuiaDsNc.woff2", "https:\/\/fonts.googleapis.com\/css?family=Cairo|Kodchasan|Niramit|Roboto", "https:\/\/fonts.googleapis.com\/icon?family=Material+Icons" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "commands": { "toggle-command-center": { "suggested_key": { "default": "Ctrl+Shift+C", "mac": "Command+Shift+C" }, "description": "Toggle the main command center panel" }, "execute-buy": { "suggested_key": { "default": "Ctrl+Shift+B", "mac": "Command+Shift+B" }, "description": "Execute a buy with the current Buy settings" }, "execute-sell": { "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "Command+Shift+Z" }, "description": "Execute a sell with the current Sell settings" }, "execute-panic-sell": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Cancel all pending transactions and sell all holdings immediately at the current bid" } }, "content_scripts": [ { "matches": [ "*:\/\/webux.ustocktrade.com\/inet\/webux\/trading.html*", "*:\/\/webux.ustocktrain.com\/inet\/webux\/trading.html*" ], "js": [ "js\/jquery-3.3.1.min.js", "js\/jquery-ui.min.js", "js\/whiskeybourbon.js", "js\/jwt-decode.min.js", "js\/env.js", "js\/handlebars.min-latest.js", "js\/auth0chrome.min.js", "js\/mutation-summary.js", "js\/materialize.js", "js\/script.js", "js\/command_center.js" ], "css": [ "css\/main.css" ], "run_at": "document_idle" } ] } |