Kolinks

ko/* 주소를 인식하고 원본 URL로 리다이렉트해주는 확장 프로그램
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",
  "name": "Kolinks",
  "description": "ko/* 주소를 인식하고 원본 URL로 리다이렉트해주는 확장 프로그램",
  "version": "0.0.7",
  "manifest_version": 3,
  "omnibox": {
    "keyword": "ko"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "webRequest",
    "windows"
  ],
  "host_permissions": [
    "*://*.appisode.com/*",
    "*://ko/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:8080/pages/signin?popup=1",
        "http://localhost:8080/pages/signup?popup=1",
        "https://kolinks.appisode.com/pages/signin?popup=1",
        "https://kolinks.appisode.com/pages/signup?popup=1"
      ],
      "js": [
        "content_scripts/signin_bridge.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "http://localhost:8080/",
        "https://kolinks.appisode.com/"
      ],
      "js": [
        "content_scripts/sync_user.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}