diff --git a/README.md b/README.md index 53d027a..338306d 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,10 @@ Chrome はデフォルトでいまも UserScript をサポートしており、\ Amazon (amazon.co.jp) の商品 URL を短縮する +## atmarkit.user.js + +[@IT](https://atmarkit.itmedia.co.jp/)の見た目を調整して、記事の続きを少し読む + ## twimg-shorten.user.js Twitter の画像 URL を短縮する diff --git a/atmarkit.user.js b/atmarkit.user.js new file mode 100644 index 0000000..f0a1bd5 --- /dev/null +++ b/atmarkit.user.js @@ -0,0 +1,7 @@ +// ==UserScript== +// @match https://atmarkit.itmedia.co.jp/* +// ==/UserScript== +"use strict"; + +const el = window.document.querySelector(".subscription"); +if (el) el.removeAttribute("style");