Games Day

Games Day

Games Day New Tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Games Day",
  "description": "Games Day New Tab",
  "version": "1.2",
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.games-day.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "bookmarks"
  ],
  "icons": {
    "128": "logo_128x.png"
  }
}