This Stinks!

This Stinks!

A fun Chrome extension that shoots a poo image across the screen.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "This Stinks!",
  "version": "1.0",
  "description": "A fun Chrome extension that shoots a poo image across the screen.",
  "action": {
    "default_icon": {
      "16": "pooemoji16.png",
      "32": "pooemoj32.png",
      "48": "pooemoj48.png",
      "128": "thisstinkschrome128.png"
    },
    "default_popup": ""
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "stinky.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "icons": {
    "16": "pooemoji16.png",
    "32": "pooemoj32.png",
    "48": "pooemoj48.png",
    "128": "thisstinkschrome128.png"
  }
}