-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
282 lines (232 loc) · 10.3 KB
/
popup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
document.getElementById("scrapeBtn").addEventListener("click", () => {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
chrome.scripting.executeScript({
target: { tabId: tabs[0].id },
function: scrapeFollowers
});
});
});
document.getElementById("scrapeFollowingBtn").addEventListener("click", () => {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
chrome.scripting.executeScript({
target: { tabId: tabs[0].id },
function: scrapeFollowing
});
});
});
document.getElementById("visitPostsBtn").addEventListener("click", () => {
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
chrome.scripting.executeScript({
target: { tabId: tabs[0].id },
function: visitMyPosts
});
});
});
chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
if (request.action === "updateFollowerList" && request.followers) {
const followerList = document.getElementById("followerList");
followerList.innerHTML = ""; // Clear previous list
request.followers.forEach(follower => {
const li = document.createElement("li");
const link = document.createElement("a");
// Set text and href for the link
link.textContent = follower.username;
link.href = follower.link;
link.target = "_blank"; // Open link in a new tab
// Append the link to the list item
li.appendChild(link);
followerList.appendChild(li);
});
// Trigger the download of followers as a .txt file
downloadTextFile(request.followers, 'Instafollowers.txt');
}
if (request.action === "updateFollowingList" && request.following) {
const followingList = document.getElementById("followerList");
followingList.innerHTML = ""; // Clear previous list
request.following.forEach(user => {
const li = document.createElement("li");
const link = document.createElement("a");
// Set text and href for the link
link.textContent = user.username;
link.href = user.link;
link.target = "_blank"; // Open link in a new tab
// Append the link to the list item
li.appendChild(link);
followingList.appendChild(li);
});
// Trigger the download of following as a .txt file
downloadTextFile(request.following, 'Instafollowings.txt');
}
});
// chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
// if (request.action === "updateFollowingList" && request.following) {
// const followingList = document.getElementById("followerList");
// followingList.innerHTML = ""; // Clear previous list
// request.following.forEach(user => {
// const li = document.createElement("li");
// const link = document.createElement("a");
// // Set text and href for the link
// link.textContent = user.username;
// link.href = user.link;
// link.target = "_blank"; // Open link in a new tab
// // Append the link to the list item
// li.appendChild(link);
// followingList.appendChild(li);
// });
// // Trigger the download of following as a .txt file
// console.log(request.following);
// downloadFollowingAsTextFile(request.following);
// }
// });
function scrapeFollowers() {
// This sends a message to the background script to start scraping
chrome.runtime.sendMessage({ action: "startScrapingFollowers" });
}
function scrapeFollowing(){
chrome.runtime.sendMessage({action:'startScrapingFollowing'});
}
function downloadTextFile(users, filename){
const textContent= users.map(f => `${f.username} : ${f.link}`).join('\n');
// Create a Blob from the text content
const blob= new Blob([textContent], {type:'text/plain'});
const url= URL.createObjectURL(blob);
chrome.downloads.download({
url:url,
filename:filename,
saveAs: true
}, ()=>{
URL.revokeObjectURL(url); // This is to clean up object URL after download
});
}
function downloadFollowersAsTextFile(followers) {
const textContent = followers.map(f => `${f.username}: ${f.link}`).join('\n');
// Create a Blob from the text content
const blob = new Blob([textContent], { type: 'text/plain' });
const url = URL.createObjectURL(blob);
// Trigger the download using the Chrome downloads API
chrome.downloads.download({
url: url,
filename: 'followers.txt',
saveAs: true
}, () => {
URL.revokeObjectURL(url); // Clean up the object URL after download
});
}
// function visitMyPosts() {
// (async () => {
// console.log('Visiting each post on your Instagram profile');
// // Function to delay execution
// const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
// // Function to capture and download a screenshot via background script
// async function captureAndDownloadScreenshot(filename) {
// return new Promise((resolve, reject) => {
// chrome.runtime.sendMessage(
// { action: "captureScreenshot", filename: filename },
// (response) => {
// if (response && response.success) {
// resolve();
// } else {
// reject("Screenshot failed");
// }
// }
// );
// });
// }
// // Get all posts on your profile
// const posts = document.querySelectorAll('._aagw');
// const totalPosts = posts.length;
// for (let i = 0; i < totalPosts; i++) {
// const postLink = posts[i];
// // Visit the post by clicking on the link
// postLink.click();
// // Wait for the post to load
// await delay(2000);
// // Take a screenshot of the post
// await captureAndDownloadScreenshot(`post-${i + 1}.png`);
// // Handle carousel posts by clicking the "Next" button if it exists
// let nextButton = document.querySelector('button[aria-label="Next"]');
// while (nextButton) {
// nextButton.click();
// console.log('Clicked Next in carousel');
// // Wait for the next item in the carousel to load
// await delay(2000);
// // Take a screenshot of the current part of the carousel
// await captureAndDownloadScreenshot(`post-${i + 1}-carousel-part.png`);
// // Recheck for the Next button
// nextButton = document.querySelector('button[aria-label="Next"]');
// }
// // Log that the post was visited
// console.log(`Visited post ${i + 1} of ${totalPosts}`);
// // Wait for a moment before navigating back
// await delay(2000);
// // Go back to the profile page
// window.history.back();
// // Wait for the profile page to load
// await delay(2000);
// }
// console.log('Finished visiting all posts.');
// })();
// }
function visitMyPosts() {
(async () => {
console.log('Visiting each post on your Instagram profile');
// Function to delay execution
const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
// Prompt user for folder name
const folderName = prompt("Enter a folder name to store screenshots:", "Instagram_Posts");
if (!folderName) {
console.error("Folder name was not provided. Cancelling operation.");
return;
}
// Function to capture and download a screenshot via background script
async function captureAndDownloadScreenshot(filename) {
return new Promise((resolve, reject) => {
chrome.runtime.sendMessage(
{ action: "captureScreenshot", filename: `${folderName}/${filename}` },
(response) => {
if (response && response.success) {
resolve();
} else {
reject("Screenshot failed");
}
}
);
});
}
// Get all posts on your profile
const posts = document.querySelectorAll('._aagw');
const totalPosts = posts.length;
for (let i = 0; i < totalPosts; i++) {
const postLink = posts[i];
// Visit the post by clicking on the link
postLink.click();
// Wait for the post to load
await delay(2000);
// Take a screenshot of the post
let count=1;
await captureAndDownloadScreenshot(`post-${i + 1}.${count}.png`);
// Handle carousel posts by clicking the "Next" button if it exists
let nextButton = document.querySelector('button[aria-label="Next"]');
while (nextButton) {
nextButton.click();
console.log('Clicked Next in carousel');
// Wait for the next item in the carousel to load
await delay(2000);
count++;
// Take a screenshot of the current part of the carousel
await captureAndDownloadScreenshot(`post-${i+1}.${count}.png`);
// Recheck for the Next button
nextButton = document.querySelector('button[aria-label="Next"]');
}
// Log that the post was visited
console.log(`Visited post ${i + 1} of ${totalPosts}`);
// Wait for a moment before navigating back
await delay(2000);
// Go back to the profile page
window.history.back();
// Wait for the profile page to load
await delay(2000);
}
console.log('Finished visiting all posts.');
})();
}