Sentitude - Sentiment Analysis

Get sentiment, pleasantness, and attention values for any webpage or selection

Τι είναι το Sentitude - Sentiment Analysis;

Το Sentitude - Sentiment Analysis είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Christian Broms, και η κύρια λειτουργία του είναι "Get sentiment, pleasantness, and attention values for any webpage or selection".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sentitude - Sentiment Analysis

Λήψη αρχείων επέκτασης Sentitude - Sentiment Analysis σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Get an immediate indication of the sentiment of the pages you visit. Sentitude automatically scans every page you visit for sentiment data. Select individual paragraphs and text snippets to scan. Each scan provides a sentiment value, pleasantness value, and attention value.

Sentitude can... 
±  highlight selections with a visual representation of the sentiment 
±  highlight the individual words in a selection with their sentiment values 
±  provide detailed information about every scan in the popup window
±  allow you to select any paragraphs on a page to scan with a single click
±  be easily customized through an easy to use options panel 

Sentitude is completely self contained and makes no API calls. It uses two dictionaries to compute sentiment values- SenticNet 5 and AFINN-111. Learn more on the website linked below. 

Sentitude is open source! Grab the code on GitHub by visiting the website linked below. 

PRIVACY NOTE: Sentitude does not store any of your scanned data. It will only visually alter the sites you visit if you allow it to by visiting the options panel. By default, Sentitude does not change any of the pages you visit.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sentitude - Sentiment Analysis Sentitude - Sentiment Analysis
ID khjckhocojcpjjfppdkahjcfacenljja
Επίσημο URL https://chromewebstore.google.com/detail/sentitude-sentiment-analy/khjckhocojcpjjfppdkahjcfacenljja
Περιγραφή Get sentiment, pleasantness, and attention values for any webpage or selection
Μέγεθος Αρχείου 1001 KB
Αριθμός Εγκαταστάσεων 123
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-07-03
Ημερομηνία Δημοσίευσης 2018-07-02
Προγραμματιστής Christian Broms
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/CBR0MS/sentitudeExtension
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/CBR0MS/sentitudeExtension/blob/master/docs/help.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Sentitude - Sentiment Analysis",
    "short_name": "Sentitude",
    "version": "1.1",
    "description": "Get sentiment, pleasantness, and attention values for any webpage or selection",
    "author": "Christian Broms",
    "web_accessible_resources": [
        "extension-information.json"
    ],
    "background": {
        "scripts": [
            "scripts\/background-load-objects.js",
            "scripts\/porter-stemmer.js",
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/injected\/content.js"
            ],
            "css": [
                "scripts\/injected\/content.css"
            ]
        }
    ],
    "options_page": "pages\/options.html",
    "browser_action": {
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "icons": {
        "128": "assets\/icon128.png"
    },
    "commands": {
        "analyze-selected-text": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Get sentiment of selected text"
        }
    },
    "manifest_version": 2
}