复制豆瓣日记编辑栏,互动栏,标签栏到顶部

一个小功能,方便使用

当前为 2021-10-23 提交的版本,查看 最新版本

// ==UserScript==
// @name         复制豆瓣日记编辑栏,互动栏,标签栏到顶部
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  一个小功能,方便使用
// @author       lpy
// @match      *://www.douban.com/note*
// @grant        none
// @require      http://cdn.bootcss.com/jquery/3.3.1/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    //alert("test");
    //$(".note-ft").clone().prependTo($(".note"));
    $(".note-footer-stat").clone().css({"margin":"5px 0px"}).appendTo($(".pub-date"));
    $(".mod-tags").css({"overflow":"hidden"});
    //$(".mod-tags").clone().prependTo($(".note"));
    $(".mod-tags").clone().css({"margin":"0px","padding":"0px"}).appendTo($(".pub-date"));
    $(".mod-tags").find("a").css({"float":"left"});
    $(".sns-bar").clone().css({"margin":"0px","padding":"0px"}).appendTo($(".pub-date"));
    // Your code here...
})();

QingJ © 2025

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