Github disable turbolinks

Speed up github access!

  1. // ==UserScript==
  2. // @namespace vimcaw
  3. // @name Github disable turbolinks
  4. // @version 1.0.0
  5. // @description Speed up github access!
  6. // @author vimcaw
  7. // @match https://github.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. function disable() { document.body.dataset.turbo = 'false' };
  17. setTimeout(() => { disable() }, 5 * 1e3);
  18. disable();
  19. })();

QingJ © 2025

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