【Chrome】插件开发
manifest.json文件
{ "name": "名称", "description": "copy的接口请求头转JSON(快捷键:Ctrl+Shift+Q)", "author": "WeiSi", "version": "1.0", "manifest_version": 3, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "index.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+Q", "mac": "Command+Shift+Q", "chromeos": "Ctrl+Shift+Q", "linux": "Ctrl+Shift+Q" } } } }
查看键盘对应的key
document.addEventListener("keydown", (e)=>{
console.log(e.key, e.keyCode);
});
如果忍耐算是坚强 我选择抵抗 如果妥协算是努力 我选择争取