Nature Wallpaper Custom New Tab

Random nature-themed wallpaper for every new tab, with short inspiring nature quotes
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Nature Wallpaper Custom New Tab",
  "version": "0.1.7",
  "description": "Random nature-themed wallpaper for every new tab, with short inspiring nature quotes",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "Nature New Tab",
    "default_icon": "icons/logo.png"
  },
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}