-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.js
79 lines (75 loc) · 2.15 KB
/
content.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
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
console.log(request);
if (request == "twitter") {
//using regular expression
// const re = new RegExp('https://twitter.com/', 'gi')
// const matches = document.documentElement.innerHTML.match(re)
// console.log(matches);
// sendResponse({
// count: matches,
// len:matches.length
// })
//usinf DOM parsing
var x = document.links;
var txt=[];
var i;
for (i = 0; i < x.length; i++) {
var str = x[i].href;
var n = str.includes("twitter");
if(n){
txt.push(x[i].href);
}
}
console.log(txt);
sendResponse({
count: txt,
len:txt.length
})
}
if (request == "facebook") {
// const re = new RegExp('https://www.facebook.com/', 'gi');
// const matches = document.documentElement.innerHTML.match(re)
// sendResponse({
// count: matches,
// len:matches.length
// })
var x = document.links;
var txt=[];
var i;
for (i = 0; i < x.length; i++) {
var str = x[i].href;
var n = str.includes("facebook");
if(n){
txt.push(x[i].href);
}
}
console.log(txt);
sendResponse({
count: txt,
len:txt.length
})
}
if (request == "linkedin") {
// const re = new RegExp('https://www.linkedin.com/', 'gi');
// const matches = document.documentElement.innerHTML.match(re)
// sendResponse({
// count: matches,
// len:matches.length
// })
var x = document.links;
var txt=[];
var i;
for (i = 0; i < x.length; i++) {
var str = x[i].href;
var n = str.includes("linkedin");
if(n){
txt.push(x[i].href);
}
}
console.log(txt);
sendResponse({
count: txt,
len:txt.length
})
}
})