mirror of
https://github.com/fofolee/uTools-quickcommand.git
synced 2025-06-09 06:54:11 +08:00
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
const quickFeatures = {
|
|
favFile: {
|
|
code: "feature_favFile",
|
|
explain: "快速将选中的文件收藏到快捷命令当中",
|
|
cmds: [{
|
|
label: "收藏文件",
|
|
type: "files",
|
|
match: "/.*+/i",
|
|
}, ],
|
|
icon: "features/fav.png",
|
|
platform: ["win32", "darwin", "linux"],
|
|
|
|
},
|
|
favUrl: {
|
|
code: "feature_favUrl",
|
|
explain: "快速将选中的网址收藏到快捷命令当中",
|
|
cmds: [{
|
|
label: "收藏网址",
|
|
type: "window",
|
|
match: {
|
|
app: [
|
|
"chrome.exe",
|
|
"firefox.exe",
|
|
"MicrosoftEdge.exe",
|
|
"iexplore.exe",
|
|
"msedge.exe",
|
|
"Google Chrome.app",
|
|
"Safari.app",
|
|
"Microsoft Edge.app",
|
|
"chrome",
|
|
"firefox",
|
|
],
|
|
},
|
|
}, ],
|
|
icon: "features/fav.png",
|
|
platform: ["win32", "darwin", "linux"],
|
|
|
|
},
|
|
pluNickName: {
|
|
code: "feature_pluNickName",
|
|
explain: "为插件设置别名",
|
|
cmds: ["插件别名"],
|
|
icon: "features/plugin.png",
|
|
platform: ["win32", "darwin", "linux"],
|
|
}
|
|
}
|
|
|
|
export default quickFeatures
|