Social Sentiments

Adds sentiments indicator to facebook posts.

Wat is Social Sentiments?

Social Sentiments is een Chrome-extensie ontwikkeld door https://asadmemon.com, en de belangrijkste functie is "Adds sentiments indicator to facebook posts.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Social Sentiments

Download Social Sentiments-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Social Sentiments Social Sentiments
ID pljjkghcpbmleiggilgchhhomaihkdba
Officiële URL https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba
Beschrijving Adds sentiments indicator to facebook posts.
Bestandsgrootte 963 KB
Aantal Installaties 45
Huidige Versie 0.1
Laatst Bijgewerkt 2016-10-24
Publicatiedatum 2016-10-24
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://asadmemon.com
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}