Comment Cleaner for Facebook™

Comment Cleaner for Facebook™

Remove comments that are primarily tagged friends or short in content!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Comment Cleaner for Facebook™",
  "description": "Remove comments that are primarily tagged friends or short in content!",
  "version": "0.1.7",
  "author": "Joseph Dillman",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "animate.css"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "interact.html",
    "default_icon": "/pics/logo128.png"
  }
}