helping-check-answer

形势政策答题查询

  1. // ==UserScript==
  2. // @name helping-check-answer
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 形势政策答题查询
  6. // @author FKYnJYQ
  7. // @match http://xg.info.bit.edu.cn/dangke/mod/quiz/attempt.php?attempt=*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-1.11.0.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var st = $('.qtext').html();
  15. window.open('https://www.baidu.com/s?wd='+st);
  16. })();