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\/" ] } |