https://github.com/imightexist/collabvm-bot
https://github.com/imightexist/collabvm-bot
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/imightexist/collabvm-bot
- Owner: imightexist
- Created: 2022-02-04T17:42:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-29T13:24:50.000Z (almost 4 years ago)
- Last Synced: 2025-01-05T00:44:04.964Z (over 1 year ago)
- Language: JavaScript
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# collabvm-bot
client side bot
# "hosting" the bot on your browser
javascript:x=document.createElement("script"); xml = new XMLHttpRequest(); xml.open( "GET", "https://raw.githubusercontent.com/imightexist/collabvm-bot/main/bot.js", false ); xml.send( null ); x.id = "bot"; x.innerHTML=xml.responseText; document.head.appendChild(x);
# hosting the bot with nodejs
1. first install nodejs obviously
2. do npm install websocket
3. download the bot
4. do node nodejs.js
# make one yourself?
eh sure why not, example.js is kinda customizable for you to make a bot
Type this in console:
javascript:x=document.createElement("script"); xml = new XMLHttpRequest(); xml.open( "GET", "https://raw.githubusercontent.com/imightexist/collabvm-bot/main/example.js", false ); xml.send( null ); x.id = "bot"; x.innerHTML=xml.responseText; document.head.appendChild(x);