Email Insights

Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…

Τι είναι το Email Insights;

Το Email Insights είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον EmailInsights, και η κύρια λειτουργία του είναι "Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email.

The extension uses Natural language processing(NLP) to determine the important keywords of one's email and highlights that text so the tedious process of skimming through emails turns into the easiest part of the day.In addition, the extension works automatically in the background when an email is opened without having to select any part of the email or pressing a key at all.We at Email Insights understand the importance of our user's privacy hence, NONE of the emails are ever processed outside the highlighting procedure and are not stored anywhere on our servers. Select from a wide range of colours to personalize the highlighting process and get the most out of Email Insights.
Currently the extension is compatible with :-
Gmail
Yahoo Mail
Outlook Mail
Hotmail

Patreon link - https://www.patreon.com/emailInsights

Please have a look at our Privacy Policy and Terms of Service before using the extension :-
Privacy Policy - https://sites.google.com/view/email-insights-privacy-policy
Terms of Service - https://sites.google.com/view/emailinsightstermsofservice                    

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

Όνομα Email Insights Email Insights
ID mehkjjekoafmnioaglgnaemcchcfmabc
Επίσημο URL https://chrome.google.com/webstore/detail/email-insights/mehkjjekoafmnioaglgnaemcchcfmabc
Περιγραφή Email Insights aids the user to skim through emails very quickly by highlighting all the important keywords in their email. The…
Μέγεθος Αρχείου 98.97 KB
Αριθμός Εγκαταστάσεων 40
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2020-09-08
Ημερομηνία Δημοσίευσης 2020-07-11
Αξιολόγηση 5.00/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής EmailInsights
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://sites.google.com/view/email-insights-privacy-policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Email Insights",
    "icons": {
        "16": "image16.png",
        "48": "image48.png",
        "128": "image128.png"
    },
    "version": "1.0.3",
    "content_security_policy": "script-src 'self' https:\/\/emaili.herokuapp.com\/receiver; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/u\/*",
                "https:\/\/outlook.live.com\/mail\/0\/*",
                "https:\/\/mail.yahoo.com\/d\/*"
            ],
            "js": [
                "content.js",
                "services.js",
                "google.js",
                "outlook.js",
                "yahoo.js",
                "jquery.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "EI.png",
        "default_popup": "popup.html",
        "default_title": "Customize Insights!"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}