No More MarketPlace

No More MarketPlace

Search Results on TheWarehouse.co.nz will not show marketplace items by default

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "No More MarketPlace ",
  "manifest_version": 3,
  "version": "1.1",
  "description": "Search Results on TheWarehouse.co.nz will not show marketplace items by default",
  "host_permissions": [
    "https://*.thewarehouse.co.nz/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "popupevent",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "/icons/icon16.png",
    "38": "/icons/icon38.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "*://thewarehouse.co.nz/*"
  ]
}