Sentiment Analyzer
Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
什么是Sentiment Analyzer?
Sentiment Analyzer是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.”。
扩展截图
下载Sentiment Analyzer扩展crx文件
下载Sentiment Analyzer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Sentiment Analyzer |
ID | iihfppcakmfggfnmnnafejonpdpibdpi |
官方URL | https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi |
简介 | Select any text on the web and get instant sentiment feedback from Google's Machine Learning API. |
文件大小 | 39.35 KB |
安装次数 | 94 |
当前版本 | 2.0 |
更新时间 | 2018-09-11 |
上架时间 | 2018-09-11 |
评分 | 4.11/5 共9次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | 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\/" ] } |