Unblocked Games — New Tab

Unblocked Games — New Tab

Unblocked Games in your favorite browser. Play, explore, relax!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "24.03.2",
  "minimum_chrome_version": "101",
  "name": "Unblocked Games — New Tab",
  "description": "Unblocked Games in your favorite browser. Play, explore, relax!",
  "background": {
    "service_worker": "js/sw.js"
  },
  "icons": {
    "24": "img/icons/24.png",
    "32": "img/icons/favicon.png",
    "48": "img/icons/48.png",
    "128": "img/icons/128.png"
  },
  "action": {
    "default_icon": {
      "48": "img/icons/48.png"
    },
    "default_title": "New tab"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "permissions": [
    "bookmarks",
    "geolocation",
    "storage",
    "topSites",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "host_permissions": [
    "*://*/*"
  ]
}