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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον portfolio.manager.extension, και η κύρια λειτουργία του είναι "Enhance your trading activities by importing data from Trade Republic and providing valuable insights (no trading actions involved).".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Portfolio Manager Extension

Λήψη αρχείων επέκτασης 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
Επίσημο URL 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\/*"
            ]
        }
    ]
}