Text Sentiment Analysis

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

¿Qué es Text Sentiment Analysis?

Text Sentiment Analysis es una extensión de Chrome desarrollada por Subodh Garg, y su función principal es "An extension to quickly analyze sentiment of selected text on any web page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Text Sentiment Analysis

Descarga archivos de extensión Text Sentiment Analysis en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL Oficial https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Descripción An extension to quickly analyze sentiment of selected text on any web page.
Tamaño del Archivo 67.05 KB
Cantidad de Instalaciones 62
Versión Actual 1.0
Última Actualización 2018-01-07
Fecha de Publicación 2018-01-07
Calificación 1.00/5 Total de 2 Calificaciones
Desarrollador Subodh Garg
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}