GitHub mute all buttons

GitHub mute all buttons

Add `mute all` buttons to the GitHub notifications page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub mute all buttons",
  "version": "0.1.2",
  "manifest_version": 2,
  "description": "Add `mute all` buttons to the GitHub notifications page",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/notifications",
        "https://github.com/notifications/*",
        "https://github.com/*/*/notifications"
      ],
      "js": [
        "src/jquery-2.2.0.min.js",
        "src/inject/inject.js"
      ]
    }
  ]
}