Social Media Content Blocker

Social Media Content Blocker

Adds a browser action icon to the toolbar. Activate to have your feed and stories removed, when visiting Facebook.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SoMe Content Blocker",
  "version": "1.0",
  "description": "Adds a browser action icon to the toolbar. Click the button to remove a Social Media feed such as Facebooks feed.",
  "icons": {
    "48": "icons/stop-3-48.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icons/stop-3-32.png",
    "default_title": "SoMe Content Blocker",
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "/content_scripts/block_feeds.js"
      ]
    }
  ]
}