Text Sentiment Analysis

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

Co to jest Text Sentiment Analysis?

Text Sentiment Analysis to rozszerzenie Chrome opracowane przez Subodh Garg, a jego główną funkcją jest „An extension to quickly analyze sentiment of selected text on any web page.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Text Sentiment Analysis

Pobierz pliki rozszerzeń Text Sentiment Analysis w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
Oficjalny URL https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Opis An extension to quickly analyze sentiment of selected text on any web page.
Rozmiar pliku 67.05 KB
Liczba instalacji 62
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-01-07
Data Publikacji 2018-01-07
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper Subodh Garg
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}