Animal Lover Extension

Animal Lover Extension

Customize new tab's search based on favorite animal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Animal Lover Extension",
  "description": "Customize new tab's search based on favorite animal",
  "version": "1.0.2",
  "action": {},
  "icons": {
    "16": "wallpapers/icons/16x16.png",
    "32": "wallpapers/icons/32x32.png",
    "128": "wallpapers/icons/128x128.png"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "wallpapers/cats/*.jpg",
        "wallpapers/dogs/*.jpg"
      ],
      "use_dynamic_url": false
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "storage",
    "geolocation"
  ]
}