Showroom Mod

Showroom Mod

Showroom tools for Fullscreen and auto complete mission.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Showroom Mod",
  "description": "Showroom tools for Fullscreen and auto complete mission.",
  "version": "1.4.0",
  "manifest_version": 3,
  "icons": {
    "16": "/images/logo.png",
    "32": "/images/logo.png",
    "48": "/images/logo.png",
    "128": "/images/logo.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Showroom Mod",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.showroom-live.com/r/*"
      ],
      "run_at": "document_end",
      "css": [
        "button.css"
      ],
      "js": [
        "loop.js"
      ]
    },
    {
      "matches": [
        "*://*.showroom-live.com/onlive"
      ],
      "run_at": "document_end",
      "css": [
        "button.css"
      ],
      "js": [
        "onlive.js"
      ]
    }
  ]
}