utools_adb/plugin.json
2022-08-24 21:12:13 +08:00

83 lines
1.3 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"pluginName": "ADB工具",
"description": "adb常用命令需要自行配置好adb和aapt环境",
"main": "index.html",
"version": "0.0.3",
"author": "Yutou",
"logo": "logo.png",
"preload": "preload.js",
"pluginSetting": {
"single": true
},
"features": [
{
"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
}
]
}
]
}