Text Sentiment Analysis

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

Qu'est-ce que Text Sentiment Analysis ?

Text Sentiment Analysis est une extension Chrome développée par Subodh Garg, et sa fonction principale est "An extension to quickly analyze sentiment of selected text on any web page.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Text Sentiment Analysis

Téléchargez les fichiers d'extension Text Sentiment Analysis au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
URL Officiel https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Description An extension to quickly analyze sentiment of selected text on any web page.
Taille du Fichier 67.05 KB
Nombre d'Installations 62
Version Actuelle 1.0
Dernière Mise à Jour 2018-01-07
Date de Publication 2018-01-07
Évaluation 1.00/5 Total 2 Évaluations
Développeur Subodh Garg
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}