Text Sentiment Analysis

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

Wat is Text Sentiment Analysis?

Text Sentiment Analysis is een Chrome-extensie ontwikkeld door Subodh Garg, en de belangrijkste functie is "An extension to quickly analyze sentiment of selected text on any web page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Text Sentiment Analysis

Download Text Sentiment Analysis-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
Officiële URL https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Beschrijving An extension to quickly analyze sentiment of selected text on any web page.
Bestandsgrootte 67.05 KB
Aantal Installaties 62
Huidige Versie 1.0
Laatst Bijgewerkt 2018-01-07
Publicatiedatum 2018-01-07
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Subodh Garg
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}