Google Search Filter

Google Search Filter

Filters certain URLs when searching in Google page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Google Search Filter",
  "version": "0.3.0",
  "manifest_version": 3,
  "description": "Filters certain URLs when searching in Google page",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "filter.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    },
    "default_title": "Google Search Filter",
    "default_width": 370,
    "default_height": 800
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/*",
        "https://*.google.co.jp/*",
        "https://*.google.co.uk/*",
        "https://*.google.com.hk/*",
        "https://*.google.co.in/*",
        "https://*.google.com.au/*",
        "https://*.google.ca/*",
        "https://*.google.com.tw/*",
        "https://*.google.fr/*",
        "https://*.google.ru/*",
        "https://*.google.ch/*",
        "https://*.google.de/*",
        "https://*.google.co.kr/*",
        "https://*.google.com.br/*",
        "https://*.google.it/*",
        "https://*.google.es/*",
        "https://*.google.nl/*",
        "https://*.google.se/*",
        "https://*.google.com.mx/*",
        "https://*.google.com.ar/*",
        "https://*.google.com.sg/*",
        "https://*.google.com.my/*",
        "https://*.google.co.id/*",
        "https://*.google.co.za/*",
        "https://*.google.be/*",
        "https://*.google.pl/*",
        "https://*.google.com.ph/*",
        "https://*.google.ae/*",
        "https://*.google.com.tr/*",
        "https://*.google.co.th/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}