18 lines
396 B
Plaintext
18 lines
396 B
Plaintext
<!-- Birb -->
|
|
<script>
|
|
const showBirb = () => {
|
|
script = document.createElement('script');
|
|
script.setAttribute("src", "https://cdn.jsdelivr.net/gh/IdreesInc/Pocket-Bird@main/dist/web/birb.embed.js");
|
|
document.body.appendChild(script);
|
|
};
|
|
|
|
const hideBirb = () => {
|
|
window.location.reload();
|
|
};
|
|
|
|
const noBirb = () => {
|
|
console.info("Settings: Not showing birb :[");
|
|
}
|
|
</script>
|
|
<!-- /Birb -->
|