Tabby Cats Extension

Tabby Cats Extension

Add your cat to your tabs - go to MyTabbyCats.com to customize and care for your cat!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tabby Cats Extension",
  "version": "1.2",
  "description": "Add your cat to your tabs - go to MyTabbyCats.com to customize and care for your cat!",
  "icons": {
    "16": "images/favicon16.png",
    "32": "images/favicon32.png",
    "48": "images/favicon48.png",
    "128": "images/favicon128.png"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_title": "Tabby Cats"
  },
  "permissions": [
    "identity",
    "identity.email",
    "notifications",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/scripts/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "/scripts/background.js",
    "type": "module"
  }
}