Mindful Extension

An extension that makes you mindful of what you say using the power of sentiment analysis, machine learning and emojis

Τι είναι το Mindful Extension;

Το Mindful Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Mitchell Mark-George, και η κύρια λειτουργία του είναι "An extension that makes you mindful of what you say using the power of sentiment analysis, machine learning and emojis".

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

screenshot
screenshot
screenshot

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

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

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

                        Meet Mindful: a browser extension that is dedicated to making the internet a safer place for everyone. Using the power of sentiment analysis and machine learning, Mindful lets users see the sentiment value of what they type online in real time – through emojis. It also provides advanced analysis to determine if text is toxic, sexually explicit, obscene and much more.

The internet has become a wonderful place to spread ideas and beliefs, and no one should be scared to share them online. The purpose of this extension is to make you more “mindful” of the things you say online, so more people can feel free to express themselves.

If you do not want the extension to work on certain webpages, you can blacklist them by clicking on the icon in the right-hand corner of the browser and untick the checkbox.

Please feel free to provide feedback. We want to continuously improve this extension, and we need your feedback to do so. Please submit all issues, suggestions and feedback to http://mindful-extension-feedback.herokuapp.com.

This extension is also open source under the AGPL-3.0-only License. For developers who want to contribute, please go to https://github.com/MitchellMarkGeorge/Mindful to start development.

If you have any questions, please feel free to contact the developer at [email protected].

Thank you for using this extension and let's make the internet a safer place!                    

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

Όνομα Mindful Extension Mindful Extension
ID jbhmbnnjnblofofeegonlonfpgbieagd
Επίσημο URL https://chromewebstore.google.com/detail/mindful-extension/jbhmbnnjnblofofeegonlonfpgbieagd
Περιγραφή An extension that makes you mindful of what you say using the power of sentiment analysis, machine learning and emojis
Μέγεθος Αρχείου 751 KB
Αριθμός Εγκαταστάσεων 617
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2020-08-27
Ημερομηνία Δημοσίευσης 2020-03-15
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Mitchell Mark-George
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας http://mindful-extension-feedback.herokuapp.com/
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mindful Extension",
    "short_name": "Mindful",
    "author": "Mitchell Mark-George",
    "version": "1.1.2",
    "description": "An extension that makes you mindful of what you say using the power of sentiment analysis, machine learning and emojis",
    "browser_action": {
        "default_icon": "icons\/mindful-logo2.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "128": "icons\/mindful-logo2.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}