NFT Wallpaper

NFT Wallpaper

This extension will show you random nft assets in new tab from given wallet address

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NFT Wallpaper",
  "description": "This extension will show you random nft assets in new tab from given wallet address",
  "version": "2.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "sw.js"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "icons": {
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "alarms"
  ]
}