打开 AcFun 首页自动签到

打开 AcFun 首页自动签到,Chrome + TamperMonkey 测试通过

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// ==UserScript==
// @name ACFun 每日签到
// @namespace http://z4none.me
// @version 0.1
// @description 打开 Acfun 时自动签到
// @match http://www.acfun.tv/
// @copyright 2014, [email protected]
// ==/UserScript==

$(function() {
var date = new Date();
var today = date.toDateString();
var ac = $.cookie('auto-checkin');
var box = $("#area-search-guide [name='query']");

console.log("上次签到 : ", ac);
if(ac && ac == today) return;

box.val("正在签到 ...");
console.log("正在签到 ...");

$.post("/member/checkin.aspx").done(function(data){
if(data.success){
box.val(data.result);
console.log(data.result);
}
else{
box.val(data.result);
console.log(data.result);
}
$.cookie('auto-checkin', today);
});
});

打开 AcFun 首页自动签到

https://www.z4none.me/chrome-acfun/

作者

zi

发布于

2014-08-08

更新于

2014-08-08

许可协议