Brainly

try to take over the world!

目前为 2020-01-28 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Brainly
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://learnx-svc.k12.com/learnx-svc/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setInterval(() => {
  14. const question = ($('.k12_adveditor_wrapper') || $('.k12_advancedEditor_text') || $('.lrn_stimulus_content.lrn_clearfix'))[0].innerHTML.replace(/<[^>]*>?/gm, '');
  15. ($('.k12_adveditor_wrapper') || $('.k12_advancedEditor_text') || $('.lrn_stimulus_content.lrn_clearfix'))[0].onclick = () => window.open(`https://brainly.com/app/ask?q=${question}`)
  16. }, 100)
  17. // Your code here...
  18. })();