Sentiment Analyzer

Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.

Sentiment Analyzer là gì?

Sentiment Analyzer là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sentiment Analyzer

Tải xuống các tệp mở rộng Sentiment Analyzer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sentiment Analyzer Sentiment Analyzer
ID iihfppcakmfggfnmnnafejonpdpibdpi
URL Chính Thức https://chromewebstore.google.com/detail/sentiment-analyzer/iihfppcakmfggfnmnnafejonpdpibdpi
Mô tả Select any text on the web and get instant sentiment feedback from Google's Machine Learning API.
Kích Thước Tệp 39.35 KB
Số Lần Cài Đặt 94
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2018-09-11
Ngày Phát Hành 2018-09-11
Đánh Giá 4.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}