missav timetcontroler adjustment for mobile

On the mobile end, adapt and optimize missav's time control to facilitate interaction.

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

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 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         missav timetcontroler adjustment for mobile
// @namespace    http://tampermonkey.net/
// @version      2023-12-15
// @description  On the mobile end, adapt and optimize missav's time control to facilitate interaction.
// @author       CCC
// @match        https://missav.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=missav.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...

    let container = document.querySelector('.order-first >div > div:nth-child(2)');
    let spans = container.querySelectorAll('span');

    container.classList.add('flex-col')
    for (let i = 0; i < spans.length; i++) {
  // 对每个 span 元素进行操作,比如添加类名或修改样式
        spans[i].classList.add('pt-4');
    }
})();