Greasy Fork 支持简体中文。

KPD

Kogama Packet Decoder

目前為 2022-03-21 提交的版本,檢視 最新版本

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/441869/1030801/KPD.js

作者
Exnonull
版本
1.0
建立日期
2022-03-21
更新日期
2022-03-21
尺寸
15.7 KB
授權條款
MIT

Released old code as library, made some refactoring
Usage example:

const inputPacket = [
243,2,38,0,12,40,105,0,0,0,1,23,
105,0,1,39,58,20,105,0,0,0,0,39,
111,1,24,102,0,0,0,0,25,102,65,
32,0,0,26,102,0,0,0,0,27,102,0,
0,0,0,28,102,0,0,0,0,29,102,0,0,
0,0,30,102,63,128,0,0,125,111,0
];

// @returns string
const packetType = KPD.typeOf(inputPacket);

// @returns decoded object
const data = KPD.decode(inputPacket);

// @returns array of bytes
const outputPacket = KPD.encode(data);