try to take over the world!
当前为
// ==UserScript==
// @name Brainly
// @namespace http://tampermonkey.net/
// @version 0.3
// @description try to take over the world!
// @author You
// @match https://learnx-svc.k12.com/learnx-svc/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
const question = ($('.k12_viewer_live_edit_content_wrapper')[0] ||$('.k12_advancedEditor_text')[0]|| $('.k12_adveditor_wrapper')[0] || $('.lrn_stimulus_content.lrn_clearfix')[0]).innerHTML.replace(/<[^>]*>?/gm, '');
($('.k12_viewer_live_edit_content_wrapper')[0] ||$('.k12_advancedEditor_text')[0]|| $('.k12_adveditor_wrapper')[0] || $('.lrn_stimulus_content.lrn_clearfix')[0]).onclick = () => window.open(`https://brainly.com/app/ask?q=${question}`)
}, 100)
// Your code here...
})();