News Section Hider

News Section Hider

Hides sections that you specify on the Google News homepage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "News Section Hider",
  "version": "0.0.1",
  "description": "Hides sections that you specify on the Google News homepage.",
  "author": "ajh1138",
  "icons": {
    "16": "icons/news_icon_16.png",
    "48": "icons/news_icon_48.png",
    "128": "icons/news_icon_128.png"
  },
  "default_locale": "en",
  "browser_action": {
    "default_popup": "src/popup/popup.html"
  },
  "permissions": [
    "https://news.google.com/*",
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://news.google.com/*"
      ],
      "js": [
        "src/inject/inject.js"
      ]
    }
  ]
}