Text Sentiment Analysis

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

What is Text Sentiment Analysis?

Text Sentiment Analysis is a Chrome extension developed by Subodh Garg, and its main feature is "An extension to quickly analyze sentiment of selected text on any web page.".

Extension Screenshots

screenshot
screenshot

Download Text Sentiment Analysis Extension CRX File

Download Text Sentiment Analysis extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
Official URL https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Description An extension to quickly analyze sentiment of selected text on any web page.
File Size 67.05 KB
Installation Count 62
Current Version 1.0
Last Updated 2018-01-07
Publish Date 2018-01-07
Rating 1.00/5 Total 2 Ratings
Developer Subodh Garg
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}