MissAV video shows full title

Show full title on the video list page

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 video shows full title
// @name:zh-CN   MissAV影片显示完整标题
// @name:zh-TW   MissAV影片顯示完整標題
// @name:ja      MissAVのタイトルが全て表示されます
// @namespace    http://tampermonkey.net/
// @version      2024-12-27
// @description  Show full title on the video list page
// @description:zh-CN 让列表页面的影片显示完整标题
// @description:zh-TW 讓清單頁面的影片顯示完整標題
// @description:ja    リストページのビデオに完全なタイトルが表示されるようにする
// @author       Q3tBhdgZZf0uv3bxGQ8P
// @match        *://*.missav.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=missav.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // 创建一个新的style元素
    var style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = `
        a.text-secondary.group-hover\\:text-primary {
            text-wrap-mode: wrap;
        }
    `;

    // 将style元素添加到head中
    document.head.appendChild(style);
})();