iCampus Premium

iCampus Premium

아이캠퍼스를 더 쾌적하게

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "iCampus Premium",
  "version": "1.0",
  "description": "아이캠퍼스를 더 쾌적하게",
  "permissions": [
    "declarativeContent"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/icon16x16.png",
    "24": "images/icon24x24.png",
    "32": "images/icon32x32.png",
    "64": "images/icon64x64.png",
    "128": "images/icon128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://lcms.skku.edu/em/*content_type%3Dmovie*",
        "https://lcms.skku.edu/em/*content_type%3Deverlec*",
        "https://lcms.skku.edu/em/*content_type%3Doncast*",
        "https://lcms.skku.edu/em/*content_type%3Dscreenlecture*",
        "https://lcms.skku.edu/em/*content_type%3Dzoom*"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "content.js"
      ],
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16x16.png",
      "24": "images/icon24x24.png",
      "32": "images/icon32x32.png"
    },
    "default_title": "iCampus Premium",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "premium-features.js",
        "images/rectangle.svg"
      ],
      "matches": [
        "https://lcms.skku.edu/*"
      ]
    }
  ]
}