generated from nhcarrigan/template
feat: set up service to fetch comic data
This commit is contained in:
15
removeBadge.js
Normal file
15
removeBadge.js
Normal 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();
|
||||
}
|
Reference in New Issue
Block a user