Skip to content

Instantly share code, notes, and snippets.

@aike
Last active March 12, 2023 12:21
Show Gist options
  • Save aike/64596f7503ecded706537ad1e57f682b to your computer and use it in GitHub Desktop.
Save aike/64596f7503ecded706537ad1e57f682b to your computer and use it in GitHub Desktop.
Don't Believe AI - Chrome Extension
//
// Don't Believe AI
// Chrome Extension
//
window.onload = function() {
const stickynote = document.createElement("div");
Object.assign(stickynote.style, {
position: "absolute",
top: "10px",
right: "40px",
width: "150px",
height: "130px",
backgroundImage: "url('https://aikelab.net/etc/dontbelieve.png')",
backgroundSize: "150px"
});
document.body.appendChild(stickynote);
};
{
"name": "Don't Believe AI",
"version": "1.0.0",
"manifest_version": 3,
"description": "Don't Believe AI",
"content_scripts": [{
"matches": ["https://chat.openai.com/chat"],
"js": ["DontBelieveAI.js"]
}]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment