chobitsu
v1.8.4
Published
Chrome devtools protocol JavaScript implementation
Downloads
1,190
Readme
chobitsu
Chrome devtools protocol JavaScript implementation.
Install
You can get it on npm.
npm install chobitsu --save
Usage
const chobitsu = require('chobitsu');
chobitsu.setOnMessage(message => {
console.log(message);
});
chobitsu.sendRawMessage(JSON.stringify({
id: 1,
method: 'DOMStorage.clear',
params: {
storageId: {
isLocalStorage: true,
securityOrigin: 'http://example.com'
}
}
}));
For more detailed usage instructions, please read the documentation at chii.liriliri.io!