移除no-copy类和允许右键
// ==UserScript==
// @name HIO页面 文字可选&右键可点
// @namespace https://github.com/dadaewqq/fun
// @version 1.2
// @description 移除no-copy类和允许右键
// @author dadaewqq
// @match https://hio.oppo.com/*
// @grant none
// @icon https://www.google.com/s2/favicons?sz=64&domain=oppo.com
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 检查元素是否存在
var element = $('#ozoneKnow #knowledgeCont');
if (element.length) {
// 移除no-copy类
element.removeClass("no-copy");
// 允许右键菜单
document.oncontextmenu = function() {
return true;
};
}
})();