FaceBlock

FaceBlock

Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "FaceBlock",
  "short_name": "FAB",
  "description": "Blocks 'Sponsored ads' (and other annoying things) inserted into the facebook newsfeed",
  "version": "20.21.5.21",
  "author": "Frank Nostro",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "FaceBlock.png"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "FaceBlock.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "FaceBlock.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "27",
  "permissions": [
    "background",
    "https://*.facebook.com/*"
  ]
}