Greasy Fork is available in English.

前台编辑文章入口 For Z-Blog

一定程度上防止稿件盗用

目前为 2018-08-24 提交的版本。查看 最新版本

// ==UserScript==
// @name        前台编辑文章入口 For Z-Blog
// @namespace   wdssmq
// @include     http://*/post/*.html
// @version     1
// @grant       none
// @description 一定程度上防止稿件盗用
// ==/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()));
});