Interest.co.nz Commenter Block

Interest.co.nz Commenter Block

Permanently ignore the noise on interest.co.nz comments sections.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Interest.co.nz Commenter Block",
  "version": "1.0",
  "description": "Permanently ignore the noise on interest.co.nz comments sections.",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://interest.co.nz/*",
        "https://www.interest.co.nz/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}