create atmarkit.user.js

This commit is contained in:
Nebel 2022-07-13 13:18:58 +09:00
parent ffd8dcad70
commit 3593d1e686
2 changed files with 11 additions and 0 deletions

View file

@ -12,6 +12,10 @@ Chrome はデフォルトでいまも UserScript をサポートしており、\
Amazon (amazon.co.jp) の商品 URL を短縮する Amazon (amazon.co.jp) の商品 URL を短縮する
## atmarkit.user.js
[IT](https://atmarkit.itmedia.co.jp/)の見た目を調整して、記事の続きを少し読む
## twimg-shorten.user.js ## twimg-shorten.user.js
Twitter の画像 URL を短縮する Twitter の画像 URL を短縮する

7
atmarkit.user.js Normal file
View file

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