Likee videos downloader

Likee videos downloader

Easy download videos with/without watermark on Likee.video

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "0.0.1",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "homepage_url": "https://likeevideos.download",
  "content_scripts": [
    {
      "matches": [
        "https://likee.video/*"
      ],
      "js": [
        "content/import-index.js"
      ]
    },
    {
      "matches": [
        "https://likeevideos.download/*"
      ],
      "js": [
        "content/import-likeevideos.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "permissions": [
    "storage",
    "downloads",
    "tabs"
  ],
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "chunks/*-*.js",
        "content/index.js",
        "content/likeevideos.js"
      ],
      "matches": [
        "https://likee.video/*",
        "https://likeevideos.download/*"
      ]
    }
  ]
}