eToro Plus

eToro Plus adds long awaited features such as dark mode, feed moderation, privacy settings, spread data, etc.. to the eToro website

Τι είναι το eToro Plus;

Το eToro Plus είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Fabrizio Spadaro, και η κύρια λειτουργία του είναι "eToro Plus adds long awaited features such as dark mode, feed moderation, privacy settings, spread data, etc.. to the eToro website".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης eToro Plus

Λήψη αρχείων επέκτασης eToro Plus σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        eToro Plus is a chrome extension that will extend and improve your trading experience.
This extension offers a dashboard where you can enable and tweak each setting, to fully customize your experience.
Currently, there are 4 main features (many more to come later):

1) Dark Mode
2) Privacy Mode that will censor any sensitive information about your portfolio so you can comfortably trade in public with full privacy.
3)Feed moderation to finally moderate the polluted eToro news feed, from people/symbols/keywords, etc.
4) Spread, to know the difference between the prices quoted for an immediate sale and an immediate purchase for stocks

Source code: https://github.com/fabriziospadaro/r-toro

F.A.Q:

A: Do you track any data?
B: No data is collected, stored, analyzed or even read at all.

A: Is this extension safe?
B: 
1)The code is open source, no malicious behaviors are happening and you are all welcome to check it yourself
2)The chrome extension policies are PRETTY strict and severe, even the smallest fishy behavior will make my extension banned from the market
3)This extension is the most popular one available, with everyone rating 5 stars, and chrome itself flagged this extension as "recommended" because I followed all the best practices for Chrome extensions.
4)I am a Popular Invest(well I was before this bad year :D ) and I would never do anything that could compromise my status or reputation on eToro

A: Is this free?
B: Yes, and it will always be, all I ask you is to spread the word and share this with your friends.

A: Can you implement this feature??
B: Sure just join the discord group https://discord.com/invite/rr47Yasnee , and post it there.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα eToro Plus eToro Plus
ID dgbmblpdekbppmefegdmjiohpeapakoh
Επίσημο URL https://chromewebstore.google.com/detail/etoro-plus/dgbmblpdekbppmefegdmjiohpeapakoh
Περιγραφή eToro Plus adds long awaited features such as dark mode, feed moderation, privacy settings, spread data, etc.. to the eToro website
Μέγεθος Αρχείου 344 KB
Αριθμός Εγκαταστάσεων 661
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2022-11-29
Ημερομηνία Δημοσίευσης 2022-01-19
Αξιολόγηση 4.50/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής Fabrizio Spadaro
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "eToro Plus adds long awaited features such as dark mode, feed moderation, privacy settings, spread data, etc.. to the eToro website",
    "version": "0.0.4",
    "manifest_version": 3,
    "name": "eToro Plus",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.etoro.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}