Top Story Remover

Top Story Remover

This extension removes top stories from the Google News page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Top Story Remover",
  "description": "This extension removes top stories from the Google News page",
  "version": "1.0",
  "browser_action": {
    "default_icon": "nonews.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://news.google.com/*",
        "http://news.google.com/*"
      ],
      "js": [
        "newshider.js"
      ]
    }
  ]
}