禁用掘金标题动画

动画给他禁用!

// ==UserScript==
// @name         禁用掘金标题动画
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  动画给他禁用!
// @author       You
// @match        https://juejin.cn/post/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=juejin.cn
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
  'use strict';
    const style = document.createElement('style');
    document.body.appendChild(style);
    style.innerText = `.article-content h3::after, .article-content h3::before { animation: null !important }`;
    style.innerText += `.markdown-body h3::after, .markdown-body h3::before { animation: null !important }; `;
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址