NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Show datetime on Zhihu question page // @namespace http://tampermonkey.net/ // @version 0.1 // @description This is a simple script to add date time on UI when load Zhihu question page! // @author Matt // @match https://www.zhihu.com/question/* // @require http://code.jquery.com/jquery-1.11.2.min.js // @grant none // @license MIT // ==/UserScript== (function () { 'use strict'; console.log($("#root > div > main > div > meta:nth-child(6)").attr('content')) $("#root > div > main > div > div:nth-child(11) > div.QuestionHeader > div.QuestionHeader-content > div.QuestionHeader-main > h1").append( "<div>question created at:" + new Date($("#root > div > main > div > meta:nth-child(6)").attr('content')).toLocaleString() + "</div>" ) })();