83 lines
1.3 KiB
JSON
83 lines
1.3 KiB
JSON
{
|
||
"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
|
||
}
|
||
]
|
||
}
|
||
]
|
||
} |