Disabled clicking and dragging images on Neopets
当前为
// ==UserScript==
// @name Neopets: Disable image dragging
// @namespace kmtxcxjx
// @version 1.0.0
// @description Disabled clicking and dragging images on Neopets
// @match *://*.neopets.com*
// @grant none
// @run-at document-end
// @icon https://images.neopets.com/games/aaa/dailydare/2012/post/theme-icon.png
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// Disables image dragging
// This happens (accidentally) annoyingly often for me on neopets
document.addEventListener('dragstart', function(e) {
e.preventDefault();
}, true);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址