发现// @match https://www.english-corpora.org/coca/*的话会匹配到子frame,不能加星号
// ==UserScript==
// @name coca
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.english-corpora.org/coca/
// @icon https://www.google.com/s2/favicons?domain=english-corpora.org
// @grant none
// ==/UserScript==
function disen_sel() {
debugger
document.getElementsByName("x1")[0].contentWindow.document.onselectstart = new Function("return true")
document.getElementsByName("x2")[0].contentWindow.document.onselectstart = new Function("return true")
document.getElementsByName("x3")[0].contentWindow.document.onselectstart = new Function("return true")
document.getElementsByName("x4")[0].contentWindow.document.onselectstart = new Function("return true")
}
(function() {
'use strict';
loader =()=>{return false;}
setInterval(disen_sel, 1000);
//Your code here ...
})();