您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
保存知乎专栏文章内容
// ==UserScript== // @name 知乎专栏保存 // @namespace http://tampermonkey.net/ // @version 1.0.1 // @description 保存知乎专栏文章内容 // @author Kiyuiro // @match https://zhuanlan.zhihu.com/p/* // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com // @grant none // @license Apache-2.0 // ==/UserScript== (function() { 'use strict'; const btn = document.createElement('button'); btn.textContent = '保存页面'; btn.style.position = 'fixed'; btn.style.top = '10px'; btn.style.right = '10px'; btn.style.zIndex = '99999'; btn.style.padding = '6px 12px'; btn.style.background = '#f44336'; btn.style.color = '#fff'; btn.style.border = 'none'; btn.style.borderRadius = '4px'; btn.style.cursor = 'pointer'; document.body.appendChild(btn); btn.addEventListener('click', () => { [ "Post-Row-Content-right", "Catalog", "AppHeader", "Post-Sub", "Comments-container", "ContentItem-time", "Post-topicsAndReviewer", "RichContent-actions", "Post-Header", "RichText-LinkCardContainer", "CornerButtons" ].forEach(className => { document.querySelectorAll(`.${className}`).forEach(el => el.remove()); }); document.querySelectorAll('.Post-RichTextContainer').forEach(el => { const parent = el.parentNode; Array.from(parent.children).forEach(child => { if (!child.classList.contains('Post-RichTextContainer')) { parent.removeChild(child); } }); }); btn.remove(); window.print(); }); })();