mirror of
https://github.com/kou029w/user-script.git
synced 2025-01-18 16:08:04 +00:00
remove github-tab-size.user.js
This commit is contained in:
parent
7ee41d41b7
commit
7865c04215
2 changed files with 0 additions and 20 deletions
|
@ -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 を短縮する
|
||||||
|
|
|
@ -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();
|
|
Loading…
Add table
Reference in a new issue