Memrise "Hack"

Personal use for the Memrise course completion bar.

  1. // ==UserScript==
  2. // @name Memrise "Hack"
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Personal use for the Memrise course completion bar.
  6. // @author Summer Wummer
  7. // @match http://www.memrise.com/*
  8. // @grant (none)
  9. // ==/UserScript==
  10.  
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20.  
  21. addGlobalStyle('.progress { background-image: linear-gradient(#8ede28, #8ede28 49.9%, #8ede28 50%); background-color: #8ede28; border: 1px solid #578b15; overflow: visible; position: relative; };');

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址