Greasy Fork is available in English.

Bandcamp Volume Bar

Adds a volume bar to Bandcamp

< Відгуки до Bandcamp Volume Bar

Відгук: Добре - скрипт працює добре

§
Опубліковано: 21.04.2020

How to set the background color?

I like the blue, wanna use that.

RedcrafterАвтор
§
Опубліковано: 21.04.2020

The background color of what the button or the slider?

§
Опубліковано: 22.04.2020

Both. As seen on the description page. I thought you can color a box surrounding both bars.

RedcrafterАвтор
§
Опубліковано: 22.04.2020
Edited: 22.04.2020

No that's the custom color of the Bandcamp page. For example https://danimalcannon.bandcamp.com/ I could add that but i feel like that's outside the scope of what the extension should do.

RedcrafterАвтор
§
Опубліковано: 22.04.2020

If you want a custom box here you go

var testDiv = document.createElement("div");
testDiv.style.position = "absolute";
testDiv.style.width = "392px";
testDiv.style.height = "132px";
testDiv.style.top = "-8px";
testDiv.style.left = "-8px";
testDiv.style.backgroundColor = "#4AC2E6";

var ins = document.querySelector("#trackInfoInner");
ins.style.position = "relative";
ins.insertBefore(testDiv, ins.children[0]);

Just put that into the script in front of the style. You can use any color you want. Note that the box will still be there on pages with different background colors.

§
Опубліковано: 01.05.2020

@Redcrafter said: No that's the custom color of the Bandcamp page. For example https://danimalcannon.bandcamp.com/ ahh, now I get it. Nice.

@Redcrafter said: If you want a custom box here you go... Thanks!

Опублікувати відповідь

Sign in to post a reply.