where to find profile images?

DeDav

Registered Member
Joined
Jul 14, 2016
Messages
72
Reaction score
5
I bought many IG accounts and i want to change their profile image to something related to my niche ,
my question is how can i find good profile images for my accounts? should i copy other profile images?
 
I wouldn't copy from other profiles from the same site. Use other social media sites. Twitter for instance.

I guess if you need specific pics, you can't really leave out the manual part of finding the accounts. Luckily on Twitter you can simply use the search to find relevant accs, when you have a list of accounts, you can download the profile pics with this iMacros script i made a while ago:
Code:
TAB T=1
TAB CLOSEALLOTHERS
SET !ERRORIGNORE NO
SET !DATASOURCE c:\followers.csv
SET !LOOP 1
SET !DATASOURCE_LINE {{!LOOP}}
URL GOTO=https://twitter.com/{{!COL1}}
ONDOWNLOAD FOLDER=c:\profile_pics\ FILE={{!COL1}}
TAG POS=1 TYPE=IMG ATTR=SRC:https://pbs.twimg.com/profile_images/*.jpg CONTENT=EVENT:SAVEITEM
Create a followers.csv file with the usernames, one per line and put it into the root of your c: drive (if you put it somewhere else, modify the file path accordingly in the 4th line). If you play the macro in loop, it will go through the whole list one by one, the file names will be the usernames, loop count=the number of usernames on your list.
I made this script with the standalone iMacros browser and it might not function properly with the browser addons for Firefox, Chrome or IE.
 
Back
Top