v2free

v2free自動點擊簽到。

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

You will need to install an extension such as Tampermonkey to install this script.

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         v2free
// @namespace    https://v2free.org/user
// @version      0.124
// @description  v2free自動點擊簽到。
// @author       You
// @license MIT
// @match        https://v2free.net/user
// @match        https://w1.v2free.top/user
// @match        https://cdn.v2free.top/user
// @match        https://v2free.org/user
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //v2free   https://greasyfork.org/zh-CN/scripts/463297-v2free
var count = 0;
    // 在每次定时器周期内,count变量会自增1,并检查是否已经执行了12次。如果是,就使用clearInterval函数取消定时器的运行。
var iId = setInterval(function() {
    count++;
    if (count >= 6) {
        clearInterval(iId);
    }
    // 下面是setInterval函数所要执行的代码

    var btn=document.querySelector('#checkin');
    btn.click();
}, 1000); // 每隔1秒执行一次
 
    // window.setInterval(function (){
    // var btn=document.querySelector('#checkin');
   // var btna=document.querySelector('#recaptcha-anchor');
    // btn.click();
    // },2000); 每隔2秒执行一次

})();