Collabza Widget

Collabza Widget

Расширение для Collabza

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Collabza Widget",
  "version": "0.04",
  "description": "Расширение для Collabza",
  "icons": {
    "128": "/src/icon-128.png"
  },
  "default_title": "Расширение для Collabza",
  "action": {
    "default_popup": ""
  },
  "content_scripts": [
    {
      "matches": [
        "https://collabza.ru/*"
      ],
      "run_at": "document_start",
      "js": [
        "libs/jquery-1.10.2.min.js",
        "background.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/app.js",
        "src/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "background.service_worker": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  }
}