Portfolio Manager Extension

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

¿Qué es Portfolio Manager Extension?

Portfolio Manager Extension es una extensión de Chrome desarrollada por portfolio.manager.extension, y su función principal es "Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Portfolio Manager Extension

Descarga archivos de extensión Portfolio Manager Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Portfolio Manager Extension Portfolio Manager Extension
ID piiaagkdgpmnhmeggidclfiicicdknea
URL Oficial https://chromewebstore.google.com/detail/portfolio-manager-extensi/piiaagkdgpmnhmeggidclfiicicdknea
Descripción Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).
Tamaño del Archivo 3.05 MB
Cantidad de Instalaciones 33
Versión Actual 0.7.0
Última Actualización 2023-06-14
Fecha de Publicación 2023-06-07
Desarrollador portfolio.manager.extension
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://portfolio-manager-extension.com
URL de la Página de Ayuda https://github.com/portfolio-manager-extension/portfolio-manager-extension/issues
URL de la Página de Política de Privacidad https://portfolio-manager-extension.com/privacy-policy.html
Idiomas Soportados 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\/*"
            ]
        }
    ]
}