GitHub 한글화

GitHub 한글화

GitHub.com의 내용을 한글로 번역해 보여줍니다. 이 확장 프로그램을 설치하신 뒤, 깃헙에 방문하시면 한글로 번역된 내용이 보입니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub 한글화",
  "short_name": "github_ko",
  "version": "0.1.9",
  "description": "GitHub.com의 내용을 한글로 번역해 보여줍니다. 이 확장 프로그램을 설치하신 뒤, 깃헙에 방문하시면 한글로 번역된 내용이 보입니다.",
  "author": "https://github.com/hatemogi/github-ko-ext",
  "homepage_url": "https://github.com/hatemogi/github-ko-ext",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "script": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.github.com/*"
      ],
      "css": [
        "github-ko.css"
      ],
      "js": [
        "github-ko.js"
      ]
    }
  ],
  "permissions": [
    "background",
    "webRequest",
    "*://*.github.com/"
  ],
  "web_accessible_resources": [
    "fonts/*.ttf"
  ]
}