Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 404 Bytes

browser-extension.md

File metadata and controls

29 lines (24 loc) · 404 Bytes

浏览器插件开发

创建 Chrome APP

chrome.app.runtime.onLaunched.addListener(() => {
  chrome.app.window.create('index.html', {
    id: "clockWinID"
  })
})

设置快捷键

{
  "commands" : {
    "cmdNew": {
        "suggested_key": {
          "default": "Ctrl+Shift+1"
        },
        "global": true,
        "description": "Create new window"
    }
  }
}