Autoplay fmspins.com

2023-11-27, 9:49:39 a.m.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Autoplay fmspins.com
// @namespace   Violentmonkey Scripts
// @match       https://*.fmspins.com/
// @grant       none
// @version     1.1
// @author      -
// @description 2023-11-27, 9:49:39 a.m.
// @license MIT
// ==/UserScript==


window.addEventListener('load', function() {
    // Wait for the page to fully load
    var streamButton = document.querySelector('button.stream-button');
    var playerDiv = document.getElementById('player');

    if (streamButton && playerDiv) {
        // Check if both the button and the player div are found on the page
        streamButton.click();
        playerDiv.classList.add('jp-state-playing','jp-state-seeking');
    }
});