Anonymizer & Sentiments Extension

It hides names and other personal data using NLP. Share your screen in your streaming without risks!

Τι είναι το Anonymizer & Sentiments Extension;

Το Anonymizer & Sentiments Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον streamingsentiments, και η κύρια λειτουργία του είναι "It hides names and other personal data using NLP. Share your screen in your streaming without risks!".

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

screenshot

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

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

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

                        (Chrome extension created during the Sentiment Expert.ai Hackathon).

Anonymizer web. It hides sensitive content on web pages and replaces it with asterisks (*****). It allows you to configure what type of entities to view: names of people, addresses, telephones, etc... It uses the API of expert.ai to detect these entities.

It calculates the sentiment score of the web and displays it in a "gauge" type graph.

It shows the emotions of the web in a radar chart (or spider), using the API of expert.ai.

Displays the main topic of the page, using the expert.ai API for main syncons.

This chrome extension allows you to change the API Token of expert.ai very easily.                    

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

Όνομα Anonymizer & Sentiments Extension Anonymizer & Sentiments Extension
ID lipefganjgdcbpmmlaipondjbklgiapd
Επίσημο URL https://chromewebstore.google.com/detail/anonymizer-sentiments-ext/lipefganjgdcbpmmlaipondjbklgiapd
Περιγραφή It hides names and other personal data using NLP. Share your screen in your streaming without risks!
Μέγεθος Αρχείου 177 KB
Αριθμός Εγκαταστάσεων 45
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2021-07-14
Ημερομηνία Δημοσίευσης 2021-07-13
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής streamingsentiments
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anonymizer & Sentiments Extension",
    "description": "It hides names and other personal data using NLP. Share your screen in your streaming without risks!",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/nlapi.expert.ai\/*",
        "https:\/\/code.jquery.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/streaming-sentiments-16.png",
            "32": "\/images\/streaming-sentiments-32.png",
            "48": "\/images\/streaming-sentiments-48.png",
            "128": "\/images\/streaming-sentiments-128.png"
        }
    },
    "icons": {
        "16": "\/images\/streaming-sentiments-16.png",
        "32": "\/images\/streaming-sentiments-32.png",
        "48": "\/images\/streaming-sentiments-48.png",
        "128": "\/images\/streaming-sentiments-128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "gauge.min.js",
                "chart.js",
                "globals.js"
            ]
        }
    ]
}