Art And Weather

Art And Weather

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": "Art And Weather",
  "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.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Art And Weather"
  },
  "host_permissions": [
    "https://api.openweathermap.org/*",
    "https://artandweather.co/*"
  ],
  "chrome_url_overrides": {
    "newtab": "src/index.html"
  },
  "permissions": [
    "storage"
  ],
  "offline_enabled": true,
  "icons": {
    "128": "logo/128x128.png"
  }
}