mirror of
https://github.com/kou029w/user-script.git
synced 2025-01-18 16:08:04 +00:00
14 lines
292 B
JavaScript
14 lines
292 B
JavaScript
// ==UserScript==
|
|
// @match https://github.com/*
|
|
// ==/UserScript==
|
|
"use strict";
|
|
|
|
const { body } = window.document;
|
|
|
|
function main() {
|
|
const el = body.querySelector(".tab-size");
|
|
if (el) el.dataset.tabSize = "2";
|
|
}
|
|
|
|
new MutationObserver(main).observe(body, { childList: true });
|
|
main();
|