I-Notice: 인하대학교 학과별 공지사항 모아보기, 즐겨찾기

인하대학교 공지사항을 한번에 모아볼 수 있습니다. I-Notice를 통해 원하는 학과의 공지사항을 빠르게 확인하세요.
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": 3,
  "name": "I-Notice: 인하대학교 학과별 공지사항 모아보기, 즐겨찾기",
  "description": "인하대학교 공지사항을 한번에 모아볼 수 있습니다. I-Notice를 통해 원하는 학과의 공지사항을 빠르게 확인하세요.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*.inha.ac.kr/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.inha.ac.kr/bbs/*/*/artclView.do*popup*",
        "http://ibattery.website.ne.kr/sub/*popup*",
        "http://ibattery2.website.ne.kr/sub/*popup*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "action": {
    "default_popup": "html/popup.html",
    "default_title": "I-Notice",
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "version": "1.1.1",
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": true
  }
}