Portfolio Manager Extension

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

Apa itu Portfolio Manager Extension?

Portfolio Manager Extension adalah ekstensi Chrome yang dikembangkan oleh portfolio.manager.extension, dan fitur utamanya adalah "Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Portfolio Manager Extension

Unduh file ekstensi Portfolio Manager Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Portfolio Manager Extension Portfolio Manager Extension
ID piiaagkdgpmnhmeggidclfiicicdknea
URL Resmi https://chromewebstore.google.com/detail/portfolio-manager-extensi/piiaagkdgpmnhmeggidclfiicicdknea
Deskripsi Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).
Ukuran File 3.05 MB
Jumlah Instalasi 33
Versi Saat Ini 0.7.0
Terakhir Diperbarui 2023-06-14
Tanggal Publikasi 2023-06-07
Pengembang portfolio.manager.extension
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://portfolio-manager-extension.com
URL Halaman Bantuan https://github.com/portfolio-manager-extension/portfolio-manager-extension/issues
URL Halaman Kebijakan Privasi https://portfolio-manager-extension.com/privacy-policy.html
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}