Social Sentiments
Adds sentiments indicator to facebook posts.
Was ist Social Sentiments?
Social Sentiments ist eine Chrome-Erweiterung, die von https://asadmemon.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds sentiments indicator to facebook posts.".
Erweiterungsscreenshots
Social Sentiments-Erweiterungs-CRX-Datei herunterladen
Laden Sie Social Sentiments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Social Sentiments |
ID | pljjkghcpbmleiggilgchhhomaihkdba |
Offizielle URL | https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba |
Beschreibung | Adds sentiments indicator to facebook posts. |
Dateigröße | 963 KB |
Installationsanzahl | 45 |
Aktuelle Version | 0.1 |
Letztes Update | 2016-10-24 |
Veröffentlichungsdatum | 2016-10-24 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://asadmemon.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |