UAR

UAR

URL 리다이렉션(URL redirection)은 Citrix VDI 환경에서 차단된 사이트에 접근 시에 자동으로 이용 가능한 Local PC 로 넘겨 받은 URL을 Redirection 합니다.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UAR",
  "version": "1.3",
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.4.1.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery-3.4.1.js",
        "js/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "img/favicon.png",
    "default_title": "UAR"
  }
}