Set tab width to 4

Sets the tab width / indentation size to 4

// ==UserScript==
// @name        Set tab width to 4
// @description Sets the tab width / indentation size to 4
// @version     1
// @license     MIT
// @match       *://*/*
// @grant       none
// @namespace   https://greasyfork.org/en/users/1141549-mwk-soul
// ==/UserScript==

document.body.style.tabSize = 4;