Google-Naver 검색 전환

Google-Naver 검색 전환

Naver와 Google 간의 검색결과를 전환합니다. Alt+Q 단축키를 이용할 수 있습니다.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google-Naver 검색 전환",
  "description": "Naver와 Google 간의 검색결과를 전환합니다. Alt+Q 단축키를 이용할 수 있습니다.",
  "version": "1.0.1",
  "homepage_url": "https://blog.naver.com/columncat",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "engineRedirect.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "Naver-Google 전환"
  },
  "permissions": [
    "https://www.google.com/*",
    "https://www.google.co.kr/*",
    "https://search.naver.com/*",
    "https://www.naver.com/*",
    "activeTab"
  ],
  "commands": {
    "keyboard": {
      "suggested_key": {
        "default": "Alt+Q"
      },
      "description": "전환"
    }
  }
}