Hide Medium

Hide Medium

Hides Medium.com articles from Hacker News and Designer News.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hide Medium",
  "version": "1.1",
  "description": "Hides Medium.com articles from Hacker News and Designer News.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/on.png",
    "default_title:": "Filter Medium"
  },
  "permissions": [
    "storage"
  ],
  "author": "Dan Cortes",
  "content_scripts": [
    {
      "matches": [
        "*://www.designernews.co/*",
        "*://news.ycombinator.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "jquery.min.js",
        "contentscript.js"
      ]
    }
  ]
}