Doge for Chrome

Doge for Chrome

5% chance of doge every time you load page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Doge for Chrome",
  "description": "5% chance of doge every time you load page",
  "version": "2.0",
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "96": "/images/icon96.png",
    "128": "/images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/icon16.png",
      "32": "/images/icon32.png",
      "96": "/images/icon96.png",
      "128": "/images/icon128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "animate.css",
        "doge.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}