Simple Search

Simple Search

Google search has begun adding icons to your searches. Simple Search removes the icon and URL to simplify looking through search…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Search",
  "short_name": "SS",
  "version": "1.0",
  "icons": {
    "48": "./Icons/icon48.png",
    "128": "./Icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "./node_modules/jquery/dist/jquery.min.js",
        "./FaviconRemover.js"
      ]
    }
  ]
}