您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Kogama Packet Decoder
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/441869/1030801/KPD.js
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);