MissAV video shows full title

Show full title on the video list page

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

// ==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);
})();