EZTool: NOK Package Download Helper

EZTool: NOK Package Download Helper

Easily manage your downloads with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EZTool: NOK Package Download Helper",
  "version": "1.2.0",
  "description": "Easily manage your downloads with a single click.",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "webNavigation",
    "webRequest",
    "tabs",
    "storage",
    "scripting",
    "downloads"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://online.networks.nokia.com/SWD*download*"
      ],
      "js": [
        "contentScript.js"
      ],
      "entry_points": [
        "popup"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/secret_icon.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}