Social Sentiments
Adds sentiments indicator to facebook posts.
What is Social Sentiments?
Social Sentiments is a Chrome extension developed by https://asadmemon.com, and its main feature is "Adds sentiments indicator to facebook posts.".
Extension Screenshots
Download Social Sentiments Extension CRX File
Download Social Sentiments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Social Sentiments |
ID | pljjkghcpbmleiggilgchhhomaihkdba |
Official URL | https://chromewebstore.google.com/detail/social-sentiments/pljjkghcpbmleiggilgchhhomaihkdba |
Description | Adds sentiments indicator to facebook posts. |
File Size | 963 KB |
Installation Count | 45 |
Current Version | 0.1 |
Last Updated | 2016-10-24 |
Publish Date | 2016-10-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://asadmemon.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |