어둠의 사자

어둠의 사자

한양대학교 LMS를 업그레이드 시켜주는 확장앱입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "어둠의 사자",
  "version": "1.3.6",
  "description": "한양대학교 LMS를 업그레이드 시켜주는 확장앱입니다.",
  "icons": {
    "16": "/src/icon16.png",
    "48": "/src/icon48.png",
    "128": "/src/icon128.png"
  },
  "author": "munzii",
  "browser_action": {
    "default_popup": "view/popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/src/script.js"
      ],
      "css": [
        "/src/dark-theme.css"
      ],
      "matches": [
        "https://learning.hanyang.ac.kr/*",
        "https://hycms.hanyang.ac.kr/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "/src/dark-theme.js"
  ],
  "manifest_version": 2
}