Chzzk-PIP

Chzzk-PIP

치지직 PIP, 녹화, 스크린샷 확장 프로그램

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chzzk-PIP",
  "version": "1.0.6",
  "description": "치지직 PIP, 녹화, 스크린샷 확장 프로그램",
  "manifest_version": 3,
  "action": {
    "default_popup": "pages/popup.html"
  },
  "icons": {
    "16": "logos/logo_16x16.png",
    "48": "logos/logo_48x48.png",
    "128": "logos/logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chzzk.naver.com/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "downloads"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "ffmpeg/*",
        "pages/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval' 'wasm-unsafe-eval'; child-src 'self';"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}