guideu

guideu

왁타버스 영상 도우미 서비스

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "왁타버스 영상 도우미 서비스",
  "version": "1.0.2",
  "manifest_version": 3,
  "name": "guideu",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icons/32.png"
  },
  "icons": {
    "16": "images/icons/16.png",
    "32": "images/icons/32.png",
    "48": "images/icons/48.png",
    "128": "images/icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "http://www.youtube.com/watch*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://gbw.waksight.com/*",
      "*://*.youtube.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "images/icons/128.png",
        "images/icons/32.png"
      ],
      "matches": []
    }
  ],
  "permissions": [
    "tabs"
  ]
}