解决百度网盘页面文件名称显示不完整
当前为
// ==UserScript==
// @name 百度网盘样式优化
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 解决百度网盘页面文件名称显示不完整
// @author You
// @match https://pan.baidu.com/s/*
// @icon https://pan.baidu.com/m-static/base/static/images/favicon.ico
// @grant none
// ==/UserScript==
(function() {
document.querySelector('#layoutMain').style.minWidth = '1920px'
document.querySelector('#layoutMain > div.frame-content > div.module-share-header > div > div.slide-show-left > h2').addEventListener('DOMSubtreeModified', function () {
document.querySelector('#layoutMain > div.frame-content > div.module-share-header > div > div.slide-show-left > h2').removeChild(document.querySelector('#layoutMain > div.frame-content > div.module-share-header > div > div.slide-show-left > h2 > img'))
var span = document.createElement('span')
span.innerText = document.title.replace('_免费高速下载|百度网盘-分享无限制', '')
document.querySelector('#layoutMain > div.frame-content > div.module-share-header > div > div.slide-show-left > h2').appendChild(span)
});
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址