Greasy Fork is available in English.
置百丈玄冰而崩裂,掷须臾池水而漂摇。
当前为
// ==UserScript==
// @name 前台编辑文章入口 For Z-Blog
// @description 置百丈玄冰而崩裂,掷须臾池水而漂摇。
// @namespace wdssmq
// @include http://*/post/*.html
// @version 2018-08-24
// @grant none
// ==/UserScript==
$(function () {
$('.js-edt').each(function () {
var id = $(this).data('id');
$(this).html('[<a href="http://www.wdssmq.com/zb_system/cmd.php?act=ArticleEdt&id=' + $(this).data('id') + '" target="_0">编辑</a>]');
});
if($('#edtDateTime').length === 1)
$('#edtDateTime').datetimepicker('setDate', (new Date()));
});