Video downloader by NNT

Video downloader by NNT

Download videos with our user video downloader. Record live streams and shorts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "version": "0.1.2",
  "description": "__MSG_extDescription__",
  "action": {},
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "src/pages/popup/index.html"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "scripting",
    "storage",
    "webRequest",
    "declarativeNetRequest",
    "sidePanel"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/contentCommon/index.js"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "exclude_globs": [
        "https://noname.technology/*"
      ]
    },
    {
      "matches": [
        "https://noname.technology/live-recording*"
      ],
      "js": [
        "src/pages/contentNNTLiveRecorder/index.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}