Greasy Fork is available in English.
一个小功能,方便使用
当前为
// ==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...
})();