Skip to content

Instantly share code, notes, and snippets.

View 42Willow's full-sized avatar
🌸
Learning Rust

Willow 42Willow

🌸
Learning Rust
View GitHub Profile
@42Willow
42Willow / bg.js
Created March 12, 2022 00:38
Batheo auto-login (Chrome extension)
chrome.extension.onRequest.addListener(onRequest);
function onRequest(request, sender, sendResponse) {
if (request.eventName == "getSettings") {
sendResponse({user: getStorage("user"), pass: getStorage("pass"), autof: getStorage("fill")});
} else {
sendResponse({});
}
}