mirror of
https://github.com/kou029w/user-script.git
synced 2025-01-18 16:08:04 +00:00
7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
// ==UserScript==
|
|
// @match https://atmarkit.itmedia.co.jp/*
|
|
// ==/UserScript==
|
|
"use strict";
|
|
|
|
const el = window.document.querySelector(".subscription");
|
|
if (el) el.removeAttribute("style");
|