Examine source code of 영이공 LMS 서포터(영남이공대학교 YNC LMS Supporter)

Inspect and view changes in 영이공 LMS 서포터(영남이공대학교 YNC LMS Supporter) source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "영이공 LMS 서포터(영남이공대학교 YNC LMS Supporter)",
  "description": "영남이공대학교 LMS 지원 확장 프로그램입니다. 학습하지 않은 강의와 과제를 한눈에 볼 수 있습니다!",
  "version": "1.7",
  "background": {
    "scripts": [
      "/vendor/jquery-3.5.1.min.js",
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "/vendor/jquery-3.5.1.min.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "webRequest",
    "webRequestBlocking",
    "*://ycdn.ync.ac.kr/*",
    "https://lms.ync.ac.kr/profile/settings",
    "https://lms.ync.ac.kr/api/v1/courses/*",
    "https://lms.ync.ac.kr/api/v1/users/self/favorites/courses",
    "https://lms.ync.ac.kr/learningx/api/v1/courses/*/sections/learnstatus_db"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://code.jquery.com/jquery-3.5.1.slim.min.js; object-src 'self'"
}