Skip to content

Instantly share code, notes, and snippets.

@skynetbinary
Created June 22, 2015 11:27

Revisions

  1. skynetbinary created this gist Jun 22, 2015.
    14 changes: 14 additions & 0 deletions pinterest_unfollow.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    /*
    Steps to unfollow:
    ------------------
    1. Load all of your pinterest followers by scrolling down.
    2. Run the below "Minified Version" of "unfollow.js" in browser's console.
    */

    // Minified Version
    $(".FollowButton.dim").each(function(){$(this).click();});

    // Beautified Version
    $(".FollowButton.dim").each(function (){
    $(this).click();
    });