Sentiment Analyzer

Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.

Cos'è Sentiment Analyzer?

Sentiment Analyzer è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sentiment Analyzer

Scarica i file di estensione Sentiment Analyzer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. Useful examples include evaluating information in feedback, email or articles.

Negative sentiment scale: 👿😡😭😩😖😢😓😔😨🙁 
Neutral: 😐 
Positive sentiment scale: 🙂😉😀😃😄😆😁🤗😂⭐

Please note that any selected information is sent to google for analysis, use at own discretion.                    

Informazioni di Base sull'Estensione

Nome Sentiment Analyzer Sentiment Analyzer
ID iihfppcakmfggfnmnnafejonpdpibdpi
URL Ufficiale https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi
Descrizione Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
Dimensione del File 39.35 KB
Conteggio Installazioni 94
Versione Corrente 2.0
Ultimo Aggiornamento 2018-09-11
Data di Pubblicazione 2018-09-11
Valutazione 4.11/5 Totale 9 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sentiment Analyzer",
    "description": "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.",
    "version": "2.0",
    "icons": {
        "16": "res\/NeutralFace16.png",
        "32": "res\/NeutralFace32.png",
        "48": "res\/NeutralFace48.png",
        "128": "res\/NeutralFace128.png"
    },
    "author": [
        {
            "name": "Jonathan Lundmark"
        },
        {
            "name": "Fifi Johansson"
        },
        {
            "name": "David Eriksson"
        },
        {
            "name": "Filip Byren"
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "res\/NeutralFace32-Disable.png",
        "default_title": "Sentiment Analyzer"
    },
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab",
        "http:\/\/www.google.com\/",
        "https:\/\/language.googleapis.com\/"
    ]
}