Text Sentiment Analysis

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

O que é Text Sentiment Analysis?

Text Sentiment Analysis é uma extensão do Chrome desenvolvida por Subodh Garg, e sua principal característica é "An extension to quickly analyze sentiment of selected text on any web page.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Text Sentiment Analysis

Baixe arquivos de extensão Text Sentiment Analysis no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL Oficial https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Descrição An extension to quickly analyze sentiment of selected text on any web page.
Tamanho do Arquivo 67.05 KB
Contagem de Instalações 62
Versão Atual 1.0
Última Atualização 2018-01-07
Data de Publicação 2018-01-07
Classificação 1.00/5 Total de 2 Avaliações
Desenvolvedor Subodh Garg
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}