Running Dinosaur

Running Dinosaur

Running Dinosaur t-Rex offline popup game about dinosaur T-rex running through the desert and jumping over cactuses

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "48.png",
    "default_popup": "Dinosaur.html",
    "default_title": "Running Dinosaur"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "background": {
    "service_worker": "bg.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Running Dinosaur t-Rex offline popup game about dinosaur T-rex running through the desert and jumping over cactuses",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "name": "Running Dinosaur",
  "permissions": [
    "alarms",
    "declarativeNetRequest",
    "storage"
  ],
  "icons": {
    "48": "48.png",
    "128": "128.png",
    "300": "300.png"
  },
  "version": "1.4.2",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}