Greasy Fork is available in English.
破解拦截100,显示“视频嗅探”功能的下载按钮
// ==UserScript==
// @name 破解拦截100
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 破解拦截100,显示“视频嗅探”功能的下载按钮
// @author 破解拦截100
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 创建一个新的样式元素
const style = document.createElement('style');
style.textContent = `
.ybd_video_slide_d_ownItem_btn {
display: inline !important;
}
`;
// 将样式元素添加到页面的 head 部分
document.head.appendChild(style);
// 确保目标元素立即显示
document.querySelectorAll('.ybd_video_slide_d_ownItem_btn').forEach(el => {
el.style.display = 'inline';
});
})();