From 9217782e314b5dd073855aafe24145b41980d421 Mon Sep 17 00:00:00 2001
From: MatchPort <131888743+MatchPort@users.noreply.github.com>
Date: Thu, 18 May 2023 10:35:30 -0400
Subject: [PATCH] COLORFUL BANNER
Added colorful banner module
---
README.md | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/README.md b/README.md
index da081c1..47261c6 100644
--- a/README.md
+++ b/README.md
@@ -120,6 +120,7 @@ Someone who knows your token can impersonate you, mess with your friends and ser
+
### Log in using a Token
Modifies the login screen so you can use a token to log in.
@@ -273,6 +274,34 @@ document.designMode = 'on'
+### Colorful Banner (Non nitro)
+
+Changes the boring old colored banner to a colorful changing banner. Fully customizable
+**:warning: Make sure to open your profile for this to work..**
+
+
+Expand
+
+```js
+// Define colors and index
+let colors = ['rgb(255, 0, 0)', 'rgb(0, 255, 0)', 'rgb(0, 0, 255)'];
+let i = 0;
+
+// Use the querySelector to find the div element
+let divElement = document.querySelector('.banner-1YaD3N');
+
+// Change the background-color attribute to your new color every second
+setInterval(() => {
+ divElement.style.backgroundColor = colors[i];
+ i = (i + 1) % colors.length; // Cycle through the colors
+}, 1000);
+```
+
+
+
+
+
+
### Spotify "Listen Along" Spoofer
Makes it possible to use the "Listen Along" feature without needing Spotify Premium.