dotfiles/web/userscripts/github-tab-size.user.js

20 lines
386 B
JavaScript
Raw Normal View History

2021-05-08 12:53:40 +00:00
// ==UserScript==
// @name GitHub tab size 4
// @version 2
// @grant GM_addStyle
2021-05-08 12:53:40 +00:00
// @match https://github.com/*
// @match https://gist.github.com/*
// @run-at document-start
// ==/UserScript==
(() => {
'use strict';
const TAB_SIZE = '4';
GM_addStyle(`
* {
-moz-tab-size: ${TAB_SIZE} !important;
tab-size: ${TAB_SIZE} !important;
}
`);
2021-05-08 12:53:40 +00:00
})();