ShuQ

ShuQ

ShuQ 검색 서비스를 이용하기 위한 확장 프로그램

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ShuQ",
  "description": "ShuQ 검색 서비스를 이용하기 위한 확장 프로그램",
  "version": "1.0.4",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon_96.png",
    "128": "icons/icon_256.png"
  },
  "browser_action": {
    "default_title": "ShuQ",
    "default_popup": "templates/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "js/hogan-3.0.1.min.js",
        "js/uri.min.js",
        "js/templates.js",
        "js/amalgamated.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+S",
        "chromeos": "Ctrl+Shift+S",
        "linux": "Ctrl+Shift+S",
        "mac": "Alt+Shift+S"
      }
    }
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "contextMenus",
    "system.cpu",
    "system.memory"
  ],
  "web_accessible_resources": [
    "fonts/*.woff2",
    "icons/*.svg",
    "icons/*.png"
  ]
}