1.安裝sidebarenhancements插件chrome
ctrl+shift+p
—> Install Package
—> 找到SideBarEnhancements
瀏覽器
2.配置預覽快捷鍵app
// chrome { "keys": ["f12"], "command": "side_bar_files_open_with", "args": { "paths": [], "application": "C:/Program Files (x86)/Google/Chrome/Application/chrome.exe", "extensions":".*" } }, // ie { "keys": ["f4"], "command": "side_bar_files_open_with", "args": { "paths": [], "application": "C:/Program Files/Internet Explorer/iexplore.exe", "extensions":".*" } }
上面的代碼中有兩處須要注意的地方,
一個是keys
表示快捷鍵,表示f12
能夠啓動chrome進行預覽。
另外一個是application
,表示瀏覽器所在的安裝路徑,只有路徑配置正確,纔可以正常調用瀏覽器。keysf12application