当前位置:   article > 正文

浏览器相关脚本_浏览器的脚本怎么写

浏览器的脚本怎么写

1.定时刷新 

  1. var timeout = prompt("Set timeout (Second):");
  2. var count = 0;
  3. var current = location.href;
  4. if (timeout > 0) {
  5. setTimeout('reload()', 1000 * timeout);
  6. } else {
  7. location.replace(current);
  8. }
  9. function reload() {
  10. count++;
  11. console.log('每(' + timeout + ')秒自动刷新,刷新次数:' + count);
  12. var fr4me = '<frameset cols=\'*\'>\n<frame src=\'' + current + '\'/>';
  13. fr4me += '</frameset>';
  14. with (document) {
  15. write(fr4me);
  16. void(close())
  17. }
  18. setTimeout('reload()', 1000 * timeout);
  19. }

【JS】console定时刷新页面,不会因刷新而失效 - xiaostudy - 博客园 (cnblogs.com)

2.定时操作某个动作

 

  1. function ClickConnect() {
  2. console.log("Working..."); // debug 用
  3. // 去選擇按鈕
  4. var connectbutton = document.querySelector(
  5. "colab-toolbar-button" +
  6. "#connect-icon.big-icon.icon-okay");
  7. // 點個兩下
  8. connectbutton.click(); connectbutton.click();
  9. };
  10. // 設定固定每 10 分鐘點一下
  11. const stopit = setInterval(
  12. ClickConnect, 10 * 60 * 1000);
  13. // 這行沒有沒關係,只是避免停不下來
  14. const stopping = stopper => clearInterval(stopper);

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/941691
推荐阅读
相关标签
  

闽ICP备14008679号