Sentiment Analyzer
Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
O que é Sentiment Analyzer?
Sentiment Analyzer é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sentiment Analyzer
Baixe arquivos de extensão Sentiment Analyzer 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
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.
Informações Básicas da Extensão
Nome | Sentiment Analyzer |
ID | iihfppcakmfggfnmnnafejonpdpibdpi |
URL Oficial | https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi |
Descrição | Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. |
Tamanho do Arquivo | 39.35 KB |
Contagem de Instalações | 94 |
Versão Atual | 2.0 |
Última Atualização | 2018-09-11 |
Data de Publicação | 2018-09-11 |
Classificação | 4.11/5 Total de 9 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/" ] } |