Neopets: Disable image dragging

Disabled clicking and dragging images on Neopets

当前为 2025-11-06 提交的版本,查看 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址