Text Sentiment Analysis

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

Vad är Text Sentiment Analysis?

Text Sentiment Analysis är en Chrome-tillägg utvecklad av Subodh Garg, och dess huvudfunktion är "An extension to quickly analyze sentiment of selected text on any web page.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Text Sentiment Analysis-förlängningens CRX-fil

Ladda ner Text Sentiment Analysis-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Text Sentiment Analysis Text Sentiment Analysis
ID bhjikdhhfnicmnchfcnogdfifchjjgmn
Officiell webbadress https://chrome.google.com/webstore/detail/text-sentiment-analysis/bhjikdhhfnicmnchfcnogdfifchjjgmn
Beskrivning An extension to quickly analyze sentiment of selected text on any web page.
Filstorlek 67.05 KB
Antal Installationer 62
Aktuell Version 1.0
Senast Uppdaterad 2018-01-07
Publiceringsdatum 2018-01-07
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare Subodh Garg
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}