Senti-Trend

This extension gathers data from URL and displays keywords with sentiment analysis.

¿Qué es Senti-Trend?

Senti-Trend es una extensión de Chrome desarrollada por maryhipp, y su función principal es "This extension gathers data from URL and displays keywords with sentiment analysis.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Senti-Trend

Descarga archivos de extensión Senti-Trend 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

                        Ever wish you could get an at-a-glance summary of an article's attitudes? Senti-Trend provides an alongside sentiment analysis graph of the content on your currently open tab. 

This extension was designed with articles and blog posts in mind, but will generate a pop-up for any page containing up to 15 "entities" as defined by the Alchemy API for Entity Sentiment Analysis. For best results, please wait for the webpage to fully load it's contents. Also please note that this extension involves a lengthy API call; you may need to click our icon more than once until data is received.                    

Información Básica de la Extensión

Nombre Senti-Trend Senti-Trend
ID mpiibijblggpgpoddialioodnlbgongg
URL Oficial https://chrome.google.com/webstore/detail/senti-trend/mpiibijblggpgpoddialioodnlbgongg
Descripción This extension gathers data from URL and displays keywords with sentiment analysis.
Tamaño del Archivo 466 KB
Cantidad de Instalaciones 136
Versión Actual 3.0
Última Actualización 2014-07-15
Fecha de Publicación 2014-07-15
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador maryhipp
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Senti-Trend",
    "short_name": "See a website's sentiments at-a-glance.",
    "description": "This extension gathers data from URL and displays keywords with sentiment analysis.",
    "version": "3.0",
    "browser_action": {
        "default_icon": "icons\/small_icon.png",
        "default_title": "Senti-Trend"
    },
    "icons": {
        "128": "icons\/small_icon.png",
        "48": "icons\/large_icon.png"
    },
    "background": {
        "scripts": [
            "vendors\/jquery.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/access.alchemyapi.com\/calls\/url\/URLGetRankedNamedEntities; object-src 'self'"
}