Vid Automated

Vid Automated

description

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Vid Automated",
  "version": "2.0.1",
  "description": "description",
  "permissions": [
    "alarms",
    "storage",
    "declarativeContent",
    "activeTab",
    "clipboardRead",
    "clipboardWrite"
  ],
  "host_permissions": [
    "https://*.pictory.ai/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.pictory.ai/*",
        "http://127.0.0.1:5500/*"
      ],
      "js": [
        "./js/lib/jquery.js",
        "contentScript.js"
      ],
      "css": []
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "js/*.js",
        "music-filters.json",
        "tracks.json"
      ],
      "matches": [
        "https://*.pictory.ai/*"
      ]
    }
  ]
}