让百度搜索结果的视频无法自动播放,无法复制粘贴板口令
当前为
// ==UserScript==
// @name 禁止百度搜索自动播放视频和禁止粘贴板口令
// @version 2.3
// @description 让百度搜索结果的视频无法自动播放,无法复制粘贴板口令
// @author ChatGPT
// @match https://m.baidu.com/*
// @match https://www.baidu.com/*
// @grant none
// @run-at document-start
// @namespace https://gf.qytechs.cn/users/452911
// ==/UserScript==
(function() {
'use strict';
let style = document.createElement('style');
style.innerHTML = `.cos-rich-video-player-video,[data-video-player='true'] {display: none !important;}`;
document.head.appendChild(style);
})();
document.addEventListener('copy', function(e) {
var copiedText = window.getSelection().toString();
if (copiedText.startsWith('1.fu:/') ||
copiedText.startsWith('#baiduhaokan') ||
copiedText.includes(':/¥^')) {
e.preventDefault(); // 阻止写入粘贴板
console.log('禁止复制指定内容');
}
});
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址