Fantasy World Wallpapers New Tab Theme

Fantasy World Wallpapers New Tab Theme

Install Fantasy World new tab theme and explore mythic worlds with this Chrome extension featuring imaginative wallpaper images.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fantasy World Wallpapers New Tab Theme",
  "description": "Install Fantasy World new tab theme and explore mythic worlds with this Chrome extension featuring imaginative wallpaper images.",
  "version": "3.0.9",
  "short_name": "Fantasy HD",
  "permissions": [
    "storage",
    "topSites",
    "tabs"
  ],
  "icons": {
    "16": "icons/16.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_icon": {
      "64": "icons/64.png",
      "128": "icons/128.png"
    },
    "default_title": "Fantasy World Wallpapers New Tab Theme"
  },
  "background": {
    "service_worker": "main.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "*://*.fantasynewtab.com/*"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "newtab/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.fantasynewtab.com/*"
      ],
      "js": [
        "js/content-scripts/installed.js",
        "js/content-scripts/event-handler.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 3
}