Clean feed

Clean feed

Remove all social interactions informations on facebook wall.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clean feed",
  "version": "0.21",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'; ",
  "description": "Remove all social interactions informations on facebook wall.",
  "icons": {
    "16": "icon-16x16.png",
    "48": "icon-48x48.png",
    "128": "icon-128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon-16x16.png",
      "19": "icon-19x19.png",
      "48": "icon-48x48.png",
      "128": "icon-128x128.png"
    },
    "default_title": "Clean feed",
    "badge": "on"
  },
  "content_scripts": [
    {
      "js": [
        "jquery-2.1.1.min.js",
        "fb_like_remover.js"
      ],
      "matches": [
        "http://www.facebook.com/*",
        "https://www.facebook.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}