├── notfollowing.user.js ├── LICENSE ├── README.md ├── Following.user.js └── followers.user.js /notfollowing.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name notfollowing 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author Lokin 7 | // @match https://www.instagram.com/*/?notfollowing 8 | // @grant none 9 | // ==/UserScript== 10 | 11 | (function() { 12 | var followers=localStorage.Followers.split(","); 13 | var following=localStorage.following.split(","); 14 | var nonf_list=[]; 15 | var i=0; 16 | followers.forEach(x=>{for(i=0;i{if(x!="Removed"){nonf_list.push("www.instagram.com/"+x)}}); 18 | console.log(nonf_list); 19 | })(); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 alphabeta_g 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # InstaNonfollowers 2 | How to use 3 | step 1 : Install all scripts
4 | Click to install Following 5 | (A userscript engine, like Tampermonkey, is required.)
6 | Click to install Followers 7 | (A userscript engine, like Tampermonkey, is required.)
8 | Click to install notFollowing 9 | (A userscript engine, like Tampermonkey, is required.)
10 | step 2: Open your instagram profile with the link www.instagram.com/username/?followers , scroll till all your followers are visible click on done scrolling button.
11 | step 3 :Open your instagram profile with the link www.instagram.com/username/?following , scroll till all people you are following are visible click on done scrolling button.
12 | step 4 : Open your instagram profile with the link www.instagram.com/username/?notfollowing , press f12 and the console will output the list of account not following you back.
13 | -------------------------------------------------------------------------------- /Following.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name Following 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author Lokin 7 | // @match https://www.instagram.com/*/?following 8 | // ==/UserScript== 9 | 10 | var list=document.getElementsByTagName("a"); 11 | var i=0; 12 | var j=0; 13 | var link=[] 14 | var following; 15 | var following_list=[]; 16 | 17 | setTimeout(function(){ 18 | 'use strict'; 19 | 20 | console.log(list) 21 | console.log(list.length) 22 | for(i=0;i 45 | { 46 | names=x.split("\n"); 47 | 48 | list.push(names[0]); 49 | } 50 | 51 | ); 52 | console.log(list); 53 | localStorage.setItem("following", list); 54 | 55 | } 56 | },5000); 57 | } 58 | 59 | } 60 | 61 | console.log(link) 62 | 63 | console.log(following) 64 | // Your code here... 65 | },5000) 66 | -------------------------------------------------------------------------------- /followers.user.js: -------------------------------------------------------------------------------- 1 | // ==UserScript== 2 | // @name followers 3 | // @namespace http://tampermonkey.net/ 4 | // @version 0.1 5 | // @description try to take over the world! 6 | // @author Lokin 7 | // @match https://www.instagram.com/*/?followers 8 | // @grant none 9 | // ==/UserScript== 10 | var list=document.getElementsByTagName("a"); 11 | var i=0; 12 | var j=0; 13 | var link=[] 14 | var followers; 15 | var followers_list=[]; 16 | 17 | setTimeout(function(){ 18 | 'use strict'; 19 | 20 | console.log(list) 21 | console.log(list.length) 22 | for(i=0;i 45 | { 46 | names=x.split("\n"); 47 | 48 | list.push(names[0]); 49 | } 50 | 51 | ); 52 | console.log(list); 53 | localStorage.setItem("Followers", list); 54 | 55 | 56 | 57 | } 58 | },5000); 59 | } 60 | 61 | } 62 | 63 | console.log(link) 64 | console.log(followers) 65 | 66 | // Your code here... 67 | },5000) 68 | --------------------------------------------------------------------------------