網站禁止複製腳本

網站禁止複製

// ==UserScript==
// @name         網站禁止複製腳本
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  網站禁止複製
// @author       Kenny526
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.oncontextmenu = function(){
        window.event.returnValue=false;
    }
    document.body.oncopy = function(){
        event.returnValue=false;
    }
})();