您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
博客园随笔详情,将文章内容底部信息复制显示到文章详情的标题下面,参考了 http://chromecj.com/web-development/2018-07/1468.html
当前为
// ==UserScript== // @name 博客园随笔详情页,随笔标题后显示底部信息 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 博客园随笔详情,将文章内容底部信息复制显示到文章详情的标题下面,参考了 http://chromecj.com/web-development/2018-07/1468.html // @author wakasann // @grant none // @include https://www.cnblogs.com/*/p/* // @match https://www.cnblogs.com/*/p/* // @require https://cdn.bootcss.com/jquery/2.2.1/jquery.min.js // ==/UserScript== (function() { 'use strict'; jQuery(function($){ setTimeout(function(){ // post detail copy the post info after the post title if($("#post_detail").length > 0 && $(".postDesc").length <= 1){ $("#post_detail .post .postTitle").eq(0).append("<div class='clear'></div>").after($("#post_detail .post .postDesc").clone()); } },500); }); })();