Text Sentiment Analysis

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

什麼是Text Sentiment Analysis?

Text Sentiment Analysis是由Subodh Garg開發的Chrome擴展程式,該擴展的主要功能是“An extension to quickly analyze sentiment of selected text on any web page.”。

擴展截圖

screenshot
screenshot

下載Text Sentiment Analysis擴展crx文件

下載Text Sentiment Analysis擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
官方網址 https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
簡介 An extension to quickly analyze sentiment of selected text on any web page.
檔案大小 67.05 KB
安裝次數 62
目前版本 1.0
更新時間 2018-01-07
上架時間 2018-01-07
評分 1.00/5 共 2 次評分
開發者 Subodh Garg
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}