You can run this harmless gist with the npx
command
npx https://gist.github.com/asdqdsa/fc8fa6843c14211d0534972d75c6dd33
// ==UserScript== | |
// @name slop replacer | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description replace every instance of AI with Slop | |
// @match *://*/* | |
// @grant none | |
// @run-at document-end | |
// ==/UserScript== | |
(function() { |
#!/usr/bin/env node | |
const fs = require("fs"); | |
const path = require("path"); | |
const flagFilePath = path.join(require("os").homedir(), ".lucky-charm-flag"); | |
if (!fs.existsSync(flagFilePath)) { | |
console.log("WARNING: ur system is being monitored... jk lol 🫣"); | |
fs.writeFileSync(flagFilePath, "you’ve been here before"); |
You can run this harmless gist with the npx
command
npx https://gist.github.com/asdqdsa/fc8fa6843c14211d0534972d75c6dd33