-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
38 lines (31 loc) · 769 Bytes
/
manifest.json
File metadata and controls
38 lines (31 loc) · 769 Bytes
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
{
"manifest_version": 2,
"name": "SafeCrawler",
"description": "This extension uses affective visualizations to keep websurfers safe. It is my final project for CPSC538W. Author: Oliver Schneider 2013.",
"version": "1.2",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html",
"default_title": "SafeCrawler"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"css": ["styles.css"],
"js": ["util.js", "targets.js", "visualizations.js", "safecrawl.js"],
"all_frames": true,
"run_at":"document_idle",
"allframes":true
}
],
"permissions": [
"tabs"
],
"background": {
"scripts": ["background.js"]
},
"web_accessible_resources": [
"images/EvilDude1.png",
"images/EvilDude2.png"
]
}