喜欢用鼠标拖拽的朋友如果用Google一定遇到过在结果页面
// ==UserScript==
// @name Disable Image Drag on Google
// @namespace http://your-namespace.org
// @version 1.0
// @description Disable image drag on Google search results.
// @match https://www.google.com/search*
// @grant none
// ==/UserScript==
(function() {
‘use strict’;
document.addEventListener(‘mousedown’, function(event) {
// Check if the clicked element is an image
if (event.target.tagName.toLowerCase() === ‘img’) {
event.preventDefault();
}
});
})();
正文完