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
公式URL 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
Eメール [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"
    }
}