Social Sentiments

Adds sentiments indicator to facebook posts.

Cos'è Social Sentiments?

Social Sentiments è un'estensione di Chrome sviluppata da https://asadmemon.com, e la sua funzione principale è "Adds sentiments indicator to facebook posts.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Social Sentiments

Scarica i file di estensione Social Sentiments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Social Sentiments tells you how much of the Facebook posts you consume are positive and negative. It adds a small indicator for this. You also get detailed analytics about your positive/negative consumption online.                    

Informazioni di Base sull'Estensione

Nome Social Sentiments Social Sentiments
ID pljjkghcpbmleiggilgchhhomaihkdba
URL Ufficiale https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba
Descrizione Adds sentiments indicator to facebook posts.
Dimensione del File 963 KB
Conteggio Installazioni 45
Versione Corrente 0.1
Ultimo Aggiornamento 2016-10-24
Data di Pubblicazione 2016-10-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://asadmemon.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Social Sentiments",
    "description": "Adds sentiments indicator to facebook posts.",
    "version": "0.1",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/cdn.heapanalytics.com; object-src 'self'",
    "icons": {
        "48": "assets\/hat48.png",
        "128": "assets\/hat128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.facebook.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "lib\/jquery-1.9.0.min.js",
                "content\/facebook_script.js"
            ],
            "css": [
                "content\/style.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "lib\/sentiment_afinn.js",
            "lib\/sentiment.js",
            "background\/count_by_day.js",
            "background\/background_report.js",
            "background\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "name": "View my analytics"
    }
}