Examine source code of UOS EDUCLASS enhancer for Chrome

Inspect and view changes in UOS EDUCLASS enhancer for Chrome 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": "UOS EDUCLASS enhancer for Chrome",
  "description": "서울시립대 수업 커뮤니티를 크롬에서 원활하게 사용할 수 있도록 해 줍니다.",
  "version": "1.0.3",
  "icons": {
    "19": "./19.png",
    "48": "./48.png",
    "128": "./128.png"
  },
  "permissions": [
    "tabs",
    "http://club.uos.ac.kr/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content_script.js"
      ],
      "matches": [
        "http://club.uos.ac.kr/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}