Dinosaur Game Launcher

Dinosaur Game Launcher

Launch Chrome's dinosaur game in a new tab, and play it even while online. Keyboard shortcut: Alt+Shift+D.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "dino.png",
    "default_title": "Dinosaur Game"
  },
  "description": "Launch Chrome's dinosaur game in a new tab, and play it even while online. Keyboard shortcut: Alt+Shift+D.",
  "homepage_url": "https://browsernative.com/google-chrome-dinosaur-run-game/",
  "icons": {
    "48": "dino-48.png",
    "128": "dino.png"
  },
  "manifest_version": 2,
  "name": "Dinosaur Game Launcher",
  "version": "0.1",
  "permissions": [],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+D"
      }
    }
  }
}