• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

scrip spotify web (1 Viewer)

Currently reading:
 scrip spotify web (1 Viewer)

Recently searched:

zeorx

Member
LV
0
Joined
Jul 7, 2023
Threads
1
Likes
0
Credits
222©
Cash
0$
// ==UserScript==

// @Name WebSpotify

// @namespace https://t.co/V5A0eSOppW

// @Version 0.1

// @Run-at document-start

// @description make spotify working on mobile

// @author gvvad

// @include http*://*.spotify.com/*

// @grant none

// ==/UserScript==

(function() {

'use strict';

var _scr = {};

for (const key in screen) {

switch (key) {

case "width":

_scr[key] = 1080;

break;

case "height":

_scr[key] = 1920;

break;

default:

_scr[key] = screen[key];

break;
}
}
window.screen = _scr;
})();
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom