JavaScript code to implement Weibo batch unfollow function

JavaScript code to implement Weibo batch unfollow function

A cool JavaScript code to unfollow Weibo users in batches

Weibo doesn't have a function to unfollow people in batches. I can't stand it. Here's how to use javascript code to implement the function of unfollowing people in batches!

Code

Without further ado, let's get straight to the code

var href = location.href;

function main() {
  document.write(`<frameset cols='*'>\n<frame id='inner' src='${href}'/></frameset>`)

  let frame = document.getElementById('inner');
  frame.onload = function () {
    let {
      contentWindow: window,
      contentDocument: document
    } = frame;
    window.setInterval(() => {
      try {
        document.querySelector('a[action-type="cancel_follow_single"]').click();
        document.querySelector('a[node-type="ok"]').click();
      } catch (err) {
        // do nothing
      }

    }, 2000)
  }
  document.close();
}

main();

setInterval(main, 1000 * 40);

How to eat

Enter your own Weibo

All Follow Pages

Press F12 on the first row of your keyboard, or right-click your mouse to see the inspect element

Open the console and paste the code

I don't want to run anymore, how can I stop?
關閉瀏覽器....

This is the end of this article about how to use JavaScript code to implement the batch unfollow function on Weibo. For more relevant js batch unfollow content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • NodeJS implements automatic reply function after following WeChat public account

<<:  Detailed explanation and summary of the use of Linux scheduled task Crontab command

>>:  The implementation principle of Mysql master-slave synchronization

Recommend

Detailed explanation of Mysql's concurrent parameter adjustment

Table of contents Query cache optimization Overvi...

Install redis and MySQL on CentOS

1|0MySQL (MariaDB) 1|11. Description MariaDB data...

A pitfall and solution of using fileReader

Table of contents A pitfall about fileReader File...

jQuery+swiper component realizes the timeline sliding year tab switching effect

Result: Implementation code: Need to be used with...

Why should you be careful with Nginx's add_header directive?

Preface As we all know, the nginx configuration f...

In-depth understanding of Vue-cli4 routing configuration

Table of contents Preface - Vue Routing 1. The mo...

Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

1. Download the accelerated version of msyql dock...

How to create a basic image of the Python runtime environment using Docker

1. Preparation 1.1 Download the Python installati...

Use xshell to connect to the Linux server

Benefits of using xshell to connect to Linux We c...

Idea deployment tomcat service implementation process diagram

First configure the project artifacts Configuring...

SQL implementation of LeetCode (178. Score ranking)

[LeetCode] 178.Rank Scores Write a SQL query to r...

In-depth explanation of InnoDB locks in MySQL technology

Table of contents Preface 1. What is a lock? 2. L...

mysql8.0.11 winx64 manual installation and configuration tutorial

First of all, let me talk to you about my daily l...

Ubuntu Basic Tutorial: apt-get Command

Preface The apt-get command is a package manageme...

Introduction to version management tool Rational ClearCase

Rational ClearCase is a software configuration ma...