Pets on Chrome New Tab - Glimey

Pets on Chrome New Tab - Glimey

Turn your new tab into a place for cats, dogs and others pets. Yes to pets in a new tab, no blank new tab. Bookmarks and Shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_description__",
  "version": "1.0.5",
  "name": "__MSG_name__",
  "manifest_version": 3,
  "default_locale": "en",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://myblimey.com/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "128.png",
        "64.png",
        "32.png"
      ],
      "matches": []
    }
  ]
}