Text Sentiment Analysis

An extension to quickly analyze sentiment of selected text on any web page.

Cos'è Text Sentiment Analysis?

Text Sentiment Analysis è un'estensione di Chrome sviluppata da Subodh Garg, e la sua funzione principale è "An extension to quickly analyze sentiment of selected text on any web page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Text Sentiment Analysis

Scarica i file di estensione Text Sentiment Analysis 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

                        An extension to quickly analyze sentiment(negative, neutral or positive) of a selected text on any web page. To use just select any text on a web page and then click the extension icon in browser bar to analyze the sentiment in a simple UI. The extension uses Google's Natural Language API to analyze sentiment and thus works with all languages supported by Google for it's NL API.                    

Informazioni di Base sull'Estensione

Nome Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL Ufficiale https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Descrizione An extension to quickly analyze sentiment of selected text on any web page.
Dimensione del File 67.05 KB
Conteggio Installazioni 62
Versione Corrente 1.0
Ultimo Aggiornamento 2018-01-07
Data di Pubblicazione 2018-01-07
Valutazione 1.00/5 Totale 2 Valutazioni
Sviluppatore Subodh Garg
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Text Sentiment Analysis",
    "description": "An extension to quickly analyze sentiment of selected text on any web page.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/app\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/app\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/icons\/curriculum_icon.png",
        "default_popup": "popup.html",
        "default_title": "Text Sentiment Analysis"
    }
}