Skip to content
This repository has been archived by the owner on Jun 17, 2024. It is now read-only.

COLORFUL BANNER #87

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ Someone who knows your token can impersonate you, mess with your friends and ser
<br>



### Log in using a Token

Modifies the login screen so you can use a token to log in.
Expand Down Expand Up @@ -273,6 +274,34 @@ document.designMode = 'on'
<br>


### Colorful Banner (Non nitro)

Changes the boring old colored banner to a colorful changing banner. Fully customizable<br>
**:warning: Make sure to open your profile for this to work..**

<details>
<summary>Expand</summary>

```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);
```

</details>
<br>



### Spotify "Listen Along" Spoofer

Makes it possible to use the "Listen Along" feature without needing Spotify Premium.
Expand Down