mirror of
https://github.com/kou029w/user-script.git
synced 2025-01-18 08:05:09 +00:00
8 lines
191 B
JavaScript
8 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");
|