Погода

Погода

Погода в твоём городе

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Погода",
  "short_name": "Погода",
  "version": "2.0.0",
  "description": "Погода в твоём городе",
  "author": "AlexeyTop1",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "alarms",
    "storage"
  ],
  "background": {
    "service_worker": "bg/bundle.js"
  },
  "action": {
    "default_icon": {
      "48": "icons/icon-128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Погода в твоём городе"
  },
  "icons": {
    "16": "icons/icon-128.png",
    "32": "icons/icon-128.png",
    "48": "icons/icon-128.png",
    "128": "icons/icon-128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}