Sentiment Analyzer
Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
Wat is Sentiment Analyzer?
Sentiment Analyzer is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.".
Extensie Screenshots
Download het CRX-bestand van de extensie Sentiment Analyzer
Download Sentiment Analyzer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Sentiment Analyzer |
ID | iihfppcakmfggfnmnnafejonpdpibdpi |
Officiële URL | https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi |
Beschrijving | Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. |
Bestandsgrootte | 39.35 KB |
Aantal Installaties | 94 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2018-09-11 |
Publicatiedatum | 2018-09-11 |
Beoordeling | 4.11/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |