WWDC 한글 자막

WWDC 한글 자막

WWDC 한글 자막 띄우기

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WWDC 한글 자막",
  "description": "WWDC 한글 자막 띄우기",
  "version": "3.0.1",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png",
    "512": "images/icon_512.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "*://api-free.deepl.com/*",
    "*://api.deepl.com/v2/*",
    "*://openapi.naver.com/*"
  ],
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://developer.apple.com/videos/*"
      ],
      "js": [
        "js/global.js",
        "js/wwdc_translater.js",
        "js/helpers.js",
        "js/google_browser_translate.js",
        "js/google_translate.js"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "type": "module"
    }
  ],
  "web_accessible_resources": [
    "js/global.js",
    "js/wwdc_translater.js",
    "js/helpers.js",
    "js/google_browser_translate.js",
    "js/google_translate.js"
  ]
}