-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (30 loc) · 881 Bytes
/
Copy pathmanifest.json
File metadata and controls
32 lines (30 loc) · 881 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
//This code is based off of code developed by Chromium Authors (c) 2013
//This code has been modified for running the Script Raider files as well
//as using new icons/description. The matches portion of content_scripts
//was also modified to include https:// URLs.
{
"name" : "ScriptRaider",
"version" : "1.0.1",
"description" : "Adds an inforbar alerting a user to the risk of currently running javascript",
"background" : {
"scripts": ["background.js"]
},
"icons" : {
"16" : "scroll.png", //amrosedesigns.co.uk
"19" : "scroll.png",
"48" : "javascript.png", //iconarchive.com
"128" : "javascript.png"
},
"permissions" : [
"infobars"
],
"content_scripts" : [
{
"matches" : [ "*://*/*" ],
"js" : [ "contentscript.js" ],
"run_at" : "document_idle",
"all_frames" : false
}
],
"manifest_version": 2
}