Last active
December 30, 2015 04:38
-
-
Save Sunappnio/a1f24c169eb2fa325ffb to your computer and use it in GitHub Desktop.
v2ex show real date
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name v2exdate | |
// @author [email protected] | |
// @namespace http://abc.com | |
// @description v2ex show real date | |
// @include http://www.v2ex.com/t/* | |
// @include http://v2ex.com/t/* | |
// @include https://www.v2ex.com/t/* | |
// @include https://v2ex.com/t/* | |
// @run-at document-end | |
// ==/UserScript== | |
function AddDays(num) { | |
var newdate = new Date(); | |
var newtimems = newdate.getTime() - (num * 24 * 60 * 60 * 1000); | |
newdate.setTime(newtimems); | |
var time = newdate.getFullYear() + "年" + (newdate.getMonth()+1) + "月" + newdate.getDate()+"日 "; | |
return time; | |
} | |
var x = document.getElementsByClassName("outdated"); | |
if (x.length==1) | |
{ | |
var y1=x[0].textContent; | |
var y=y1.search("天前"); | |
var daystring= y1.substring(8,y-1); | |
var d=parseInt(daystring); | |
var date1=AddDays(d); | |
var a=y1.substring(0,8)+date1+y1.substring(y+2,y1.length); | |
x[0].textContent=a; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment