As you may have noticed, thanks to the features provided by busuanzi, the click-through-rate is displayed at the bottom of the website. But to be honest, few people know my personal page.

At this time, I found that I can refresh the website by myself to increase some hits initially. This is quite of no use, but I think it’s an interesting attempt.

Although it is overqualified for the problem, recording mouse movements is a technical method. KeymouseGo gives a solution attaching an executable version.

This article provides a browser script that may be more direct and efficient. It is written below in the form of a tampermonkey script:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// ==UserScript==
// @name Webpage Auto-refresh
// @namespace https://aochen-sun.github.io/
// @version 1.0
// @description Automatically refresh pages in @match every 2000ms
// @author Aochen
// @match https://aochen-sun.github.io/
// ==/UserScript==

(function(){
'use strict';
setInterval(function(){document.location.reload()}, 2000)
// 2000 refers to the interval time
})();

Then save and enable it. The script runs well, but your PC may take some load bearing if you use it too long.

Next I will add buttons to the script in order to open and close it more easily.