Quannected

Place orders on Robinhood via TradingView alerts

什麼是Quannected?

Quannected是由theweeklypassiveincome開發的Chrome擴展程式,該擴展的主要功能是“Place orders on Robinhood via TradingView alerts”。

擴展截圖

screenshot
screenshot
screenshot

下載Quannected擴展crx文件

下載Quannected擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension allows you to connect your Robinhood Brokerage account to TradingView so you can make trades right from your TradingView charts. Also, it allows you to create alerts based off of your strategy and will automatically place trades on Robinhood for you when your criteria is met. If you have a trading strategy that you want to automate, this extension does the trading for you!                    

擴展基本資訊

名稱 Quannected Quannected
ID majjmbbkgbemgahmpgihhklgbckdhdce
官方網址 https://chromewebstore.google.com/detail/quannected/majjmbbkgbemgahmpgihhklgbckdhdce
簡介 Place orders on Robinhood via TradingView alerts
檔案大小 99.18 KB
安裝次數 670
目前版本 1.0
更新時間 2020-10-30
上架時間 2020-10-30
開發者 theweeklypassiveincome
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://www.weeklypassiveincome.com/privacy-policy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Quannected",
    "description": "Place orders on Robinhood via TradingView alerts",
    "version": "1.0",
    "browser_action": {
        "default_title": "Quannected",
        "default_icon": ".\/images\/icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": ".\/images\/icon.png",
        "48": ".\/images\/icon.png",
        "16": ".\/images\/icon.png"
    },
    "background": {
        "scripts": [
            ".\/js\/jquery.min.js",
            ".\/js\/config.js",
            ".\/js\/core.js",
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.tradingview.com\/*",
                "https:\/\/tradingview.com\/*"
            ],
            "js": [
                ".\/js\/jquery.min.js",
                ".\/js\/simpleNotify.js",
                ".\/js\/config.js",
                ".\/js\/core.js",
                ".\/js\/content_scriptAlert.js",
                ".\/js\/content_scriptBuy.js"
            ],
            "css": [
                ".\/css\/content_css.css",
                ".\/css\/simpleNotifyStyle.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/localhost:44333\/*",
        "http:\/\/robinhoodextension.gear.host\/*"
    ]
}