Rllmuk Ignore Topics

Hide topics you're not interested in
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rllmuk Ignore Topics",
  "description": "Hide topics you're not interested in",
  "homepage_url": "https://github.com/insin/rllmuk-ignore-topics",
  "version": "1.2",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://rllmukforum.com/*",
        "https://www.rllmukforum.com/*"
      ],
      "js": [
        "./rllmukignoretopics.user.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "contextMenus",
    "storage"
  ]
}