禁用在 Google/谷歌 搜索结果页面上的图片拖拽禁用智能镜头搜索

299次阅读
没有评论

禁用在 Google/谷歌 搜索结果页面上的图片拖拽禁用智能镜头搜索

喜欢用鼠标拖拽的朋友如果用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();
}
});
})();

正文完
 0
withero
版权声明:本站原创文章,由 withero 2023-10-24发表,共计438字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码