Hide the Sidebar with suggested articles on the Daily Mail website!
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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
}
}