Portfolio Manager Extension

Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).

什麼是Portfolio Manager Extension?

Portfolio Manager Extension是由portfolio.manager.extension開發的Chrome擴展程式,該擴展的主要功能是“Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Portfolio Manager Extension擴展crx文件

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

擴展使用說明

                        - 💻 All data stored locally in IndexedDB, no one can see your data 💯
- 🖱️ Simple set up with 1-click, no email, no password.
- 👨‍💻 No PIN, only works when you are logging to Trade Republic.
- 📊 Dividend tracking, trade history, cash in and out log.
- 📈 Custom portfolio to group your position.
- 🎉 No restriction, no credit card required, WinRAR license.
- 👐 Open source.

The Portfolio Manager Extension is a Chrome extension designed to enhance your trading activities by importing data from Trade Republic and providing valuable insights.

It's important to note that the extension functions solely as a reader and display tool. It does not facilitate any trading activities. Rest assured that all your data is securely stored on your own machine and never transmitted to any external sources. Your privacy and data security are our top priorities.

How it works?

The extension consists of three main components:

- Banner: A small banner at the bottom of the Trade Republic app website that displays instructions and useful information. The Banner component does not store any credentials, and you need to log in to the Trade Republic website manually.
- Reader: A hidden code that listens to your interactions with Trade Republic. It captures the data you communicate with Trade Republic but does not store any credentials or personal data. The Reader component also requires you to log in to the Trade Republic website independently.
- App: The application that presents the data collected by the Reader. You can access the app whenever you open a new tab.

Both the Banner and Reader components operate when you open and log in to your Trade Republic account. No data is stored during this process, and it is essential to note that they do not store any credentials. You have full control over your login process and need to provide the necessary credentials yourself.

The Reader actively listens and captures the data you communicate with Trade Republic based on your browser behavior. For example, when you click on "Profile," the website calls Trade Republic servers to retrieve timeline data. When you click on a timeline for more details, the website fetches the corresponding timeline's detailed data. The Reader understands the data you send and receive, but it does not perform these actions on your behalf by default.

It's important to note that we never send any trading action data to Trade Republic. The Reader mostly receives data silently. However, within the Banner component, there is a button labeled "Collect data automatically" that allows you to mimic your browser behavior and collect data faster without the need for manual clicks.

All data is stored locally in a database called IndexedDB within your browser. The only information we collect is your Trade Republic ID, which helps us determine when you started using the extension.                    

擴展基本資訊

名稱 Portfolio Manager Extension Portfolio Manager Extension
ID piiaagkdgpmnhmeggidclfiicicdknea
官方網址 https://chromewebstore.google.com/detail/portfolio-manager-extensi/piiaagkdgpmnhmeggidclfiicicdknea
簡介 Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).
檔案大小 3.05 MB
安裝次數 33
目前版本 0.7.0
更新時間 2023-06-14
上架時間 2023-06-07
開發者 portfolio.manager.extension
電子郵箱 [email protected]
付費類型 free
擴展官網 https://portfolio-manager-extension.com
說明頁面URL https://github.com/portfolio-manager-extension/portfolio-manager-extension/issues
隱私政策頁面URL https://portfolio-manager-extension.com/privacy-policy.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Portfolio Manager Extension",
    "description": "Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).",
    "version": "0.7.0",
    "icons": {
        "16": "img\/logo.16.png",
        "32": "img\/logo.32.png",
        "48": "img\/logo.48.png",
        "128": "img\/logo.128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.traderepublic.com\/*"
            ],
            "js": [
                "js\/tradeRepublic.js"
            ],
            "run_at": "document_start"
        }
    ],
    "chrome_url_overrides": {
        "newtab": "app.html"
    },
    "action": {
        "default_title": "Trade Republic Accounts",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "webRequest",
        "storage",
        "unlimitedStorage",
        "tabs",
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/*.traderepublic.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/trade-republic-injected.js",
                "css\/trade-republic.css"
            ],
            "matches": [
                "*:\/\/app.traderepublic.com\/*"
            ]
        }
    ]
}