Last-Page Architecture Browser Backgrounds

Last-Page Architecture Browser Backgrounds

User can set the wallpaper in new tab. And can also see the weather report and search on bing search engine.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Last-Page Architecture Browser Backgrounds",
  "description": "User can set the wallpaper in new tab. And can also see the weather report and search on bing search engine.",
  "version": "1.0.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Last Page"
  },
  "host_permissions": [
    "https://api.openweathermap.org/*",
    "https://last-page.co/*"
  ],
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "permissions": [
    "storage"
  ],
  "offline_enabled": true,
  "icons": {
    "128": "logo/128x128.png"
  }
}