Social Sentiments

Social Sentiments

Adds sentiments indicator to facebook posts.

Merlin
Additional files are visible only to premium users

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"
  }
}