Text Sentiment Analysis

An extension to quickly analyze sentiment of selected text on any web page.

Text Sentiment Analysis là gì?

Text Sentiment Analysis là một tiện ích mở rộng Chrome được phát triển bởi Subodh Garg, và tính năng chính của nó là "An extension to quickly analyze sentiment of selected text on any web page.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Text Sentiment Analysis 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

                        An extension to quickly analyze sentiment(negative, neutral or positive) of a selected text on any web page. To use just select any text on a web page and then click the extension icon in browser bar to analyze the sentiment in a simple UI. The extension uses Google's Natural Language API to analyze sentiment and thus works with all languages supported by Google for it's NL API.                    

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

Tên Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL Chính Thức https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Mô tả An extension to quickly analyze sentiment of selected text on any web page.
Kích Thước Tệp 67.05 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-01-07
Ngày Phát Hành 2018-01-07
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Subodh Garg
Email [email protected]
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": "Text Sentiment Analysis",
    "description": "An extension to quickly analyze sentiment of selected text on any web page.",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/app\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/app\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "assets\/icons\/curriculum_icon.png",
        "default_popup": "popup.html",
        "default_title": "Text Sentiment Analysis"
    }
}