Robinhood Mint Sync

Automatically add your Robinhood portfolio to Mint

什麼是Robinhood Mint Sync?

Robinhood Mint Sync是由George Walker開發的Chrome擴展程式,該擴展的主要功能是“Automatically add your Robinhood portfolio to Mint”。

擴展截圖

screenshot
screenshot

下載Robinhood Mint Sync擴展crx文件

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

擴展使用說明

                        This extension allows you to automatically sync your Robinhood portfolio balance with your Mint account. It will add the balance as a "collectible" in Mint.

The plugin is very simple to use. Just visit your Mint overview page to automatically initiate a sync. If you have not performed a sync before, you will be directed to set up the item in Mint to track your Robinhood portfolio to.

If you are a fan of or want to support the development of this extension, you can contribute on either Patreon (https://patreon.com/pkmnct) or PayPal (https://paypal.me/pkmnct). You can view or contribute to the open-source project at https://github.com/pkmnct/robinhood-mint-sync-chrome.                    

擴展基本資訊

名稱 Robinhood Mint Sync Robinhood Mint Sync
ID mogflmdandlpjobbddhopcggkjoggpdo
官方網址 https://chromewebstore.google.com/detail/robinhood-mint-sync/mogflmdandlpjobbddhopcggkjoggpdo
簡介 Automatically add your Robinhood portfolio to Mint
檔案大小 465 KB
安裝次數 3,106
目前版本 3.4.1
更新時間 2021-01-30
上架時間 2019-10-10
評分 4.78/5 共 45 次評分
開發者 George Walker
電子郵箱 [email protected]
付費類型 free
擴展官網 https://pkmnct.github.io/robinhood-mint-sync-chrome/
說明頁面URL https://github.com/pkmnct/robinhood-mint-sync-chrome/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Robinhood Mint Sync",
    "description": "Automatically add your Robinhood portfolio to Mint",
    "version": "3.4.1",
    "author": "George Walker",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "48.0"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "512": "images\/icon512.png"
    },
    "background": {
        "scripts": [
            "js\/background\/main.js",
            "js\/background\/update_install_listener.js",
            "js\/background\/browser_action.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png",
            "512": "images\/icon512.png"
        },
        "default_title": "Robinhood Mint Sync"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/robinhood.com\/account?syncMint=true"
            ],
            "js": [
                "js\/content\/robinhood\/main.js"
            ]
        },
        {
            "matches": [
                "https:\/\/robinhood.com\/login?redirectMint=true"
            ],
            "js": [
                "js\/content\/robinhood\/login.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mint.intuit.com\/settings.event?filter=property&addRobinhood=true"
            ],
            "js": [
                "js\/content\/mint\/properties\/update.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mint.intuit.com\/settings.event?filter=property&setupRobinhood=true"
            ],
            "js": [
                "js\/content\/mint\/properties\/check.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mint.intuit.com\/settings.event?filter=property&createProperty=true&property=*"
            ],
            "js": [
                "js\/content\/mint\/properties\/create.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mint.intuit.com\/overview.event*"
            ],
            "js": [
                "js\/external\/noty\/noty.min.js",
                "js\/content\/mint\/main.js"
            ],
            "css": [
                "css\/notification.css",
                "js\/external\/noty\/noty.css",
                "js\/external\/noty\/themes\/relax.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mint.intuit.com\/*"
            ],
            "js": [
                "js\/content\/mint\/triangleFix\/triangleFix.js"
            ],
            "css": [
                "css\/triangleFix.css"
            ]
        }
    ],
    "options_ui": {
        "page": "html\/settings.html",
        "open_in_tab": true
    },
    "permissions": [
        "storage",
        "https:\/\/phoenix.robinhood.com\/accounts\/unified"
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "js\/external\/*"
    ]
}