{
"update_url": "https://clients2.google.com/service/update2/crx",

  "manifest_version": 3,
  "version": "3.111",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "imgs/icons/16.png",
    "128": "imgs/icons/128.png"
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["scripts/parser/methods/offscreen/contentScript.js"],
      "all_frames": true
    }],
  "permissions": [
    "activeTab",
    "tabs",
    "alarms",
    "storage",
    "offscreen"
  ],
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_appName__",
    "default_icon": "imgs/icons/16.png",
    "default_popup": "scripts/popup/index.html"
  },
  "host_permissions": [
    "<all_urls>"
  ]
}