Robinhood Mint Sync
Automatically add your Robinhood portfolio to Mint
Robinhood Mint Sync क्या है?
Robinhood Mint Sync George Walker द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically add your Robinhood portfolio to Mint"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Robinhood Mint Sync एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ID | mogflmdandlpjobbddhopcggkjoggpdo |
आधिकारिक URL | 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\/*" ] } |