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 |
官方網址 | 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\/" ] } |