Sentiment Analyzer
Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
Qu'est-ce que Sentiment Analyzer ?
Sentiment Analyzer est une extension Chrome développée par Unknown, et sa fonction principale est "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Sentiment Analyzer
Téléchargez les fichiers d'extension Sentiment Analyzer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Sentiment Analyzer |
ID | iihfppcakmfggfnmnnafejonpdpibdpi |
URL Officiel | https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi |
Description | Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. |
Taille du Fichier | 39.35 KB |
Nombre d'Installations | 94 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2018-09-11 |
Date de Publication | 2018-09-11 |
Évaluation | 4.11/5 Total 9 Évaluations |
Développeur | Unknown |
Type de Paiement | free |
Langues Prises en Charge | 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\/" ] } |