A.T.T
目前為
// ==UserScript==
// @name Weibo Classic
// @namespace https://github.com/adelabs
// @description A.T.T
// @version 1.0
// @license GPL version 3
// @include *://weibo.com/*
// @include *://.weibo.com/*
// @grant none
// @run-at document-start
// ==/UserScript==
//http://www.w3schools.com/js/js_cookies.asp
function setCookie(cname, cvalue, exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = "expires="+d.toUTCString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1);
if (c.indexOf(name) != -1) return c.substring(name.length, c.length);
}
return "";
}
var date = new Date();
date.setTime(date.getTime() + (-1*24*60*60*1000));
document.cookie="wvr6=0; expires=" + date.toUTCString() + "; domain=.weibo.com; path=/";
date.setTime(date.getTime() + (366*24*60*60*1000));
document.cookie="wvr6=0; expires=" + date.toUTCString() + "; domain=.weibo.com; path=/";