Jike Auto Click Like

即刻网页版滚动时会对页面所有内容点赞

  1. // ==UserScript==
  2. // @name Jike Auto Click Like
  3. // @namespace JikeWebAutoClickLike
  4. // @version 0.3
  5. // @description 即刻网页版滚动时会对页面所有内容点赞
  6. // @author liuxsdev(@即刻:秋犯)
  7. // @match https://web.okjike.com/*
  8. // @run-at document-end
  9. // @homepage https://gist.github.com/liuxsdev/15243c150e268da74aae655843cbcde1
  10. // @license The MIT License (MIT); http://opensource.org/licenses/MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. document.body.onmousewheel=function(){
  16. var selector = 'div.flex.items-center.justify-center.w-5.h-5:not(.text-tint-warming)'
  17. var zan = document.querySelectorAll(selector)
  18. zan.forEach(function(item,index){
  19. var p=item.parentElement;
  20. p.click();
  21. })
  22. }
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址