Built-in JS Libraries
Proxyman provides certain useful bundled JS Libraries that help you achieve some tasks easily
Library Location: ~/Library/Application\ Support/com.proxyman.NSProxy/addons/libs
Name | Description | Source |
base64.js | Contains basic Base64 Encode/Decode | - |
atob.js | window.atob() | |
btoa.js | window.btoa() | |
hashes.js | Contains various hashing function: MD5, RIPEMP-160, SHA1, SHA256, SHA512, HMAC | |
lodash.js | Contains various text transformed functions | |
vkBeautify.js | pretty-print or minify text in XML, JSON, CSS and SQL formats. | |
crypto-js.min.js | JavaScript implementations of standard and secure cryptographic algorithms, e.g. DES, AES, Rabbit, ... (Version 3.3.0) |
- 1.You can provide your own JS Library, but make sure you bundle all dependencies by using Browserify or WebPack to a single JS file.
- 2.Make sure you export the func properly.
- 3.Put the file at ~/Library/Application\ Support/com.proxyman.NSProxy/addons/libs/your-lib.js
- 4.Importing the file by using
require('@libs/your-lib.js');
For instance,
const Hashes = require('@libs/hashes.js');
const { cssmin } = require('@libs/vkBeautify.js');
const Lodash = require('@libs/lodash.js');
const { atob } = require('@[email protected]')
You might check built-in libraries for reference at ~/Library/Application\ Support/com.proxyman.NSProxy/addons/libs/
Last modified 2yr ago