// ==UserScript== // @name 解除痞客邦無法選取 // @version 0.1 // @description 解除不能選取複製的問題 // @author John // @match *://*.pixnet.net/* // @grant none // @license MIT License // @namespace // @namespace https://greasyfork.org/users/814278 // @downloadURL none // ==/UserScript== (function () { 'use strict'; var bodyObj = document.getElementById('article-main'); bodyObj.onselectstart = function(){}; bodyObj.oncontextmenu = function(){}; bodyObj.ondragstart = function(){}; })();