VideoEditing Downloader

VideoEditing Downloader

An extension designed to trim and download Youtube videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VideoEditing Downloader",
  "version": "1.2",
  "description": "An extension designed to trim and download Youtube videos",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "A popup will be here!"
  },
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "http://54.67.20.179:5000/*"
  ]
}