remove github-tab-size.user.js

This commit is contained in:
Nebel 2022-08-02 21:17:30 +09:00
parent 7ee41d41b7
commit 7865c04215
2 changed files with 0 additions and 20 deletions

View file

@ -2,12 +2,6 @@
Chrome はデフォルトでいまも UserScript をサポートしており、\*.user.js ファイルをドラッグアンドドロップすると使える Chrome はデフォルトでいまも UserScript をサポートしており、\*.user.js ファイルをドラッグアンドドロップすると使える
## github-tab-size.user.js
GitHub のタブの表示幅を 2 に強制する
これは https://github.com/settings/appearance からも変更できる
## amazon-shorten.user.js ## amazon-shorten.user.js
Amazon (amazon.co.jp) の商品 URL を短縮する Amazon (amazon.co.jp) の商品 URL を短縮する

View file

@ -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();