generated from nhcarrigan/template
16 lines
366 B
JavaScript
16 lines
366 B
JavaScript
/**
|
|
* @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();
|
|
}
|