Just the News: WaPo

Just the News: WaPo

Hide opinion and perspective pieces from the WaPo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Just the News: WaPo",
  "version": "1.0",
  "description": "Hide opinion and perspective pieces from the WaPo.",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest": {
    "matches": [
      "https://www.washingtonpost.com/*"
    ],
    "run_at": "document_end"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{4b1296ce-9b64-4e83-bba1-d3cfca923422}"
    }
  }
}