Video Download For LinkedIn™

Video Download For LinkedIn™

Video Download For LinkedIn™ - an video download extension LinkedIn™, is an efficient way to help you download LinkedIn video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "version": "1.0.3",
  "description": "__MSG_extDescription__",
  "icons": {
    "128": "assets/icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "128": "assets/icons/icon128.png"
    },
    "default_title": "Video Downloader For LinkedIn",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://linkedin.com/*",
        "*://*.linkedin.com/*"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js"
  },
  "options_page": "options/index.html",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/*.png"
      ],
      "matches": [
        "*://*/*"
      ],
      "extension_ids": []
    }
  ],
  "permissions": [
    "webNavigation",
    "downloads",
    "storage"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*",
    "https://fonts.googleapis.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}