Feed Blocker

Feed Blocker

Block annoying feeds on social media...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Feed Blocker",
  "description": "Block annoying feeds on social media...",
  "version": "0.0.1",
  "optional_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_title": "FB Feed Blocker",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "img/logo.png",
    "22": "img/logo.png",
    "32": "img/logo.png",
    "48": "img/logo.png",
    "128": "img/logo.png"
  },
  "web_accessible_resources": [
    "img/logo.png"
  ]
}