Speed up github access!
// ==UserScript==
// @namespace vimcaw
// @name Github disable turbolinks
// @version 1.0.0
// @description Speed up github access!
// @author vimcaw
// @match https://github.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function disable() { document.body.dataset.turbo = 'false' };
setTimeout(() => { disable() }, 5 * 1e3);
disable();
})();