Daily Mail Sidebar Blocker

Daily Mail Sidebar Blocker

Hide the Sidebar with suggested articles on the Daily Mail website!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Daily Mail Sidebar Blocker",
  "version": "1.1",
  "description": "Hide the Sidebar with suggested articles on the Daily Mail website!",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "https://www.dailymail.co.uk/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.dailymail.co.uk/*"
      ],
      "js": [
        "target.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}