diff --git a/README.md b/README.md index 1354567..9da59d7 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,6 @@ Chrome はデフォルトでいまも UserScript をサポートしており、\*.user.js ファイルをドラッグアンドドロップすると使える -## github-tab-size.user.js - -GitHub のタブの表示幅を 2 に強制する - -これは https://github.com/settings/appearance からも変更できる - ## amazon-shorten.user.js Amazon (amazon.co.jp) の商品 URL を短縮する diff --git a/github-tab-size.user.js b/github-tab-size.user.js deleted file mode 100644 index ed9a679..0000000 --- a/github-tab-size.user.js +++ /dev/null @@ -1,14 +0,0 @@ -// ==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();