简书,思否的文章的访问量, 刷新就可以+1, 那为何不写个简单的脚本来+1呢.
谷歌无痕模式打开任意一个网站(如百度), 打开控制台, 输入下面的脚本:
window.__timer;
window.shua = function() {
document.querySelector('#testIframe') && document.querySelector('#testIframe').remove();
let iframe = document.createElement('iframe');
iframe.setAttribute('src', '${你的博客地址}');
iframe.setAttribute('id', 'testIframe');
document.querySelector('body').appendChild(iframe);
window.__timer && clearTimeout(window.__timer);
window.__timer = setTimeout(window.shua, ${刷新间隔,单位毫秒});
}
window.shua();
刷新间隔建议设置为5-10s, 太快浏览器扛不住
比如刷新当前博客:
window.__timer;
window.shua = function() {
document.querySelector('#testIframe') && document.querySelector('#testIframe').remove();
let iframe = document.createElement('iframe');
iframe.setAttribute('src', 'https://segmentfault.com/a/1190000037615832');
iframe.setAttribute('id', 'testIframe');
document.querySelector('body').appendChild(iframe);
window.__timer && clearTimeout(window.__timer);
window.__timer = setTimeout(window.shua, 8 * 1000);
}
window.shua();
这是一个简单的脚本, 如果你要高效, 建议改为api刷.
你看我的博客的访问量, 就知道我自己是没有使用的.
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。