// ==UserScript== // @name ShowaipiaxiContent // @version 0.3 // @description 显示 aipiaxi 全文 而不需要登录和关注 // @author miccall // @match https://www.aipiaxi.com/article-detail/* // @icon https://www.aipiaxi.com/xj-pc-web/icon.png // @grant none // @run-at document-end // @license MIT // @namespace aipiaxi // @downloadURL none // ==/UserScript== (function() { 'use strict'; console.log("miccall init"); const articleContentDiv = document.querySelector('.article-content'); if (articleContentDiv) { articleContentDiv.removeAttribute("style"); } else { console.log('Element not found'); } })();