您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Untruncates video titles
// ==UserScript== // @name Displays full video titles on rumble. // @namespace edisondotme // @version // @description Untruncates video titles // @author edisondotme // @license GPL // @match *://rumble.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Modify inline stylesheet modifyInlineStylesheet(); function modifyInlineStylesheet() { // Get all <style> elements in the <head> const styleElements = document.head.getElementsByTagName('style'); // Loop through each <style> element for (const styleElement of styleElements) { // Get the CSS text content const cssText = styleElement.textContent; // Replace the CSS rule const modifiedCssText = cssText.replace(/.clamp-2{-webkit-line-clamp:2}/g, '.clamp-2{/*! -webkit-line-clamp:2 */}'); // Update the CSS text content if (modifiedCssText !== cssText) { styleElement.textContent = modifiedCssText; } } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址