whatsapp-tweaker
v1.1.0
Published
### A module that allows you to programmatically tweak your WhatsApp desktop client.
Downloads
2
Readme
WhatsApp Tweaker
A module that allows you to programmatically tweak your WhatsApp desktop client.
Installation
npm i whatsapp-tweaker
Note: only works on Windows and WSL2.
Usage
- Find the latest available version
const { WhatsAppTweaker } = require('whatsapp-tweaker')
const tweaker = new WhatsAppTweaker()
tweaker.useDefaultBaseDir()
console.log(tweaker.versions)
- Set the latest version and patch your client
const path = require('path')
const { WhatsAppTweaker } = require('whatsapp-tweaker')
const tweaker = new WhatsAppTweaker()
tweaker.useDefaultBaseDir()
tweaker.setVersion('app-2.2108.8')
tweaker.enableNodeIntegration()
tweaker.enableDevTools()
tweaker.injectCSS(path.join(__dirname, 'fabulous.css'))
tweaker.injectJS(path.join(__dirname, 'hello_world.js'))
if (tweaker.hasBackup) { tweaker.restore() }
else { tweaker.backup() }
tweaker.apply()
Disclaimer
USE AT YOUR OWN RISK.