Social Sentiments

Adds sentiments indicator to facebook posts.

Qu'est-ce que Social Sentiments ?

Social Sentiments est une extension Chrome développée par https://asadmemon.com, et sa fonction principale est "Adds sentiments indicator to facebook posts.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Social Sentiments

Téléchargez les fichiers d'extension Social Sentiments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Social Sentiments Social Sentiments
ID pljjkghcpbmleiggilgchhhomaihkdba
URL Officiel https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba
Description Adds sentiments indicator to facebook posts.
Taille du Fichier 963 KB
Nombre d'Installations 45
Version Actuelle 0.1
Dernière Mise à Jour 2016-10-24
Date de Publication 2016-10-24
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://asadmemon.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}