Leetcode Eye Patch

Leetcode Eye Patch

Hides away Leetcode's Difficulty and Acceptance Rate columns.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Leetcode Eye Patch",
  "description": "Hides away Leetcode's Difficulty and Acceptance Rate columns.",
  "version": "0.10",
  "background": {
    "scripts": [
      "jquery.js",
      "jquery-watch.min.js",
      "background.js"
    ]
  },
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_title": "Leetcode Eye Patch",
    "default_icon": "icon16.png",
    "default_popup": "options.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://leetcode.com/problemset/*",
        "https://leetcode.com/problemset/*",
        "http://leetcode.com/problems/*",
        "https://leetcode.com/problems/*"
      ],
      "js": [
        "jquery.js",
        "jquery-watch.min.js",
        "background.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "manifest_version": 2
}