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