vClass Video Frame

try to take over the world!

当前为 2019-12-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name vClass Video Frame
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://vclass.neusoft.edu.cn/course/video/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setTimeout(() => {
  14. $("#startExamId").css({"backgroundColor":"blue"});
  15. $("#startExamId").attr({"data-toggle":"modal","data-target":".practice-exampaper-modal"});
  16. }, 300)
  17. })();