Portfolio Manager Extension

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

Was ist Portfolio Manager Extension?

Portfolio Manager Extension ist eine Chrome-Erweiterung, die von portfolio.manager.extension entwickelt wurde, und ihr Hauptmerkmal ist "Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Portfolio Manager Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Portfolio Manager Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        - 💻 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.                    

Grundlegende Informationen zur Erweiterung

Name Portfolio Manager Extension Portfolio Manager Extension
ID piiaagkdgpmnhmeggidclfiicicdknea
Offizielle URL https://chromewebstore.google.com/detail/portfolio-manager-extensi/piiaagkdgpmnhmeggidclfiicicdknea
Beschreibung Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).
Dateigröße 3.05 MB
Installationsanzahl 33
Aktuelle Version 0.7.0
Letztes Update 2023-06-14
Veröffentlichungsdatum 2023-06-07
Entwickler portfolio.manager.extension
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://portfolio-manager-extension.com
Hilfeseite URL https://github.com/portfolio-manager-extension/portfolio-manager-extension/issues
URL der Datenschutzrichtlinien-Seite https://portfolio-manager-extension.com/privacy-policy.html
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}