feat: set up service to fetch comic data

This commit is contained in:
2025-07-15 17:59:29 -07:00
parent 12e3c5b510
commit 9b34db3fed
3 changed files with 93 additions and 0 deletions

15
removeBadge.js Normal file
View File

@ -0,0 +1,15 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
/**
* Run this in the Discord console to remove the bot badges from the app.
* This is how we create the appearance that the webhook is a user.
*/
const appBadges = document.querySelectorAll("[class^='botTag']")
for (const badge of appBadges) {
badge.remove();
}