Greasy Fork is available in English.
try to take over the world!
当前为
// ==UserScript==
// @name 在文章标题下显示博客园文章的发布日期
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author zoffy zhang
// @match http://www.cnblogs.com/*
// @grant none
// ==/UserScript==
;(function() {
'use strict'
var postDate = document.querySelector('#post-date').innerText
var titleDom = document.querySelector('.postTitle')
var newNode=document.createElement('span').innerText=postDate
titleDom.insertAdjacentHTML('afterend', '<p style="color:#c0392b;font-weight:bold;">更新于:'+postDate+'</p>')
})()