Brainly

try to take over the world!

目前為 2020-01-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Brainly
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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_adveditor_wrapper') || $('.k12_advancedEditor_text') || $('.lrn_stimulus_content.lrn_clearfix'))[0].innerHTML.replace(/<[^>]*>?/gm, '');
   ($('.k12_adveditor_wrapper') || $('.k12_advancedEditor_text') || $('.lrn_stimulus_content.lrn_clearfix'))[0].onclick = () =>  window.open(`https://brainly.com/app/ask?q=${question}`)
    }, 100)
    // Your code here...
})();