Patriots Blog Liberator

Patriots Blog Liberator

Show only relevant stories on the patriots blog

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Patriots Blog Liberator",
  "version": "1",
  "manifest_version": 2,
  "description": "Show only relevant stories on the patriots blog",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "name": "Manipulate DOM",
    "icons": [
      "icon.png"
    ],
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "background.js"
      ],
      "matches": [
        "http://espn.go.com/blog/boston/new-england-patriots*",
        "https://espn.go.com/blog/boston/new-england-patriots*"
      ]
    }
  ]
}