더존 급여명세서 뷰어

더존 급여명세서 뷰어

더존 Erp 를 통해 발급된 ie 에서만 볼 수 있엇던 급여명세서를 크롬에서도 볼 수 있도록 제공.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "더존 급여명세서 뷰어",
  "short_name": "ejwhs Pay Stubs Viewer",
  "description": "더존 Erp 를 통해 발급된 ie 에서만 볼 수 있엇던 급여명세서를 크롬에서도 볼 수 있도록 제공.",
  "author": "KT",
  "version": "1.0.0",
  "icons": {
    "16": "old_ejwhs_pay_stubs_16.png",
    "32": "old_ejwhs_pay_stubs_32.png",
    "48": "old_ejwhs_pay_stubs_48.png",
    "128": "old_ejwhs_pay_stubs_128.png"
  },
  "browser_action": {
    "default_icon": "old_ejwhs_pay_stubs_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "file:///*"
      ],
      "js": [
        "library/jquery-3.1.1.min.js",
        "library/algorithm/core-min.js",
        "library/algorithm/x64-core-min.js",
        "library/algorithm/cipher-core-min.js",
        "library/algorithm/sha1.js",
        "library/algorithm/rc2.js",
        "library/algorithm/enc-base64-min.js",
        "library/algorithm/enc-utf16-min.js",
        "scripts/ejwhs_pay_stubs.js",
        "scripts/decryptor.js",
        "scripts/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "file:///*"
  ]
}