-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspider.js
executable file
·75 lines (72 loc) · 2.18 KB
/
spider.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
/**
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Find all links and frames on this page.
* @return {Array<string>} List of all urls.
*/
function get_urls() {
var urls = [];
// Copy the link nodelist into an array.
for (var link, x = 0; link = document.links[x]; x++) {
urls.push(link.href);
}
// Finding frame URLs using window.frames doesn't work since
// the framed windows haven't been loaded yet.
if (window.frames.length) {
var frames = document.getElementsByTagName('FRAME');
for (var frame, x = 0; frame = frames[x]; x++) {
urls.push(frame.src);
}
var iframes = document.getElementsByTagName('IFRAME');
for (var frame, x = 0; frame = iframes[x]; x++) {
urls.push(frame.src);
}
}
return urls;
}
function get_inline() {
var urls = [];
// CSS and favicons.
var links = document.getElementsByTagName('link');
for (var link, x = 0; link = links[x]; x++) {
if (link.href) {
urls.push(link.href);
}
}
// Images
var imgs = document.getElementsByTagName('img');
for (var img, x = 0; img = imgs[x]; x++) {
if (img.src) {
urls.push(img.src);
}
}
// Scripts
var scripts = document.getElementsByTagName('script');
for (var script, x = 0; script = scripts[x]; x++) {
if (script.src) {
urls.push(script.src);
}
}
// Embed
var embeds = document.getElementsByTagName('embed');
for (var embed, x = 0; embed = embeds[x]; x++) {
if (embed.src) {
urls.push(embed.src);
}
}
return urls;
}
chrome.extension.sendRequest({links: get_urls(), inline: get_inline()});