utools_adb/plugin.json

83 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-01-10 15:09:55 +08:00
{
"pluginName": "ADB工具",
"description": "adb常用命令需要自行配置好adb和aapt环境",
"main": "index.html",
"version": "0.0.3",
"author": "Yutou",
2022-08-24 21:12:13 +08:00
"logo": "logo.png",
"preload": "preload.js",
"pluginSetting": {
"single": true
},
2020-01-10 15:09:55 +08:00
"features": [
2022-08-24 21:12:13 +08:00
{
"code":"text",
"cmds": [ "adb", "android" ]
},
{
"code": "install",
"cmds": [
{
"label": "安装apk到手机",
"type": "files",
"fileType": "file",
"match":"/.*?\\.apk$/i",
"minNum": 1,
"maxNum": 1
}
]
},
{
"code": "unapk",
"cmds": [
{
"label": "反编译",
"type": "files",
"fileType": "file",
"match":"/.*?\\.apk$/i",
"minNum": 1,
"maxNum": 1
}
]
},
{
"code": "packapk",
"cmds": [
{
"label": "回编apk",
"type": "window",
"match":{
"title":"*"
}
}
]
},
{
"code": "signapk",
"cmds": [
{
"label": "签名apk",
"type": "files",
"fileType": "file",
"match":"/.*?\\.apk$/i",
"minNum": 1,
"maxNum": 1
}
]
}
,
{
"code": "apkinfo",
"cmds": [
{
"label": "查看apk信息",
"type": "files",
"fileType": "file",
"match":"/.*?\\.apk$/i",
"minNum": 1,
"maxNum": 1
}
]
}
2020-01-10 15:09:55 +08:00
]
}