-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (43 loc) · 986 Bytes
/
Copy pathmanifest.json
File metadata and controls
50 lines (43 loc) · 986 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "Raceocat - Race Condition Interceptor",
"short_name": "Raceocat",
"version": "1",
"description": "Browser extension to test for race conditions in web applications.",
"homepage_url": "https://javan.de/raceocat",
"author": "javan.de",
"developer": {
"name": "Javan Rasokat",
"url": "https://javan.de/raceocat"
},
"icons": {
"48": "icons/icon-notamper-48.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"<all_urls>"
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"browser_style": false,
"default_icon": {
"48": "icons/icon-notamper-48.png",
"32": "icons/icon-notamper-32.png",
"16": "icons/icon-notamper-16.png"
},
"default_title": "RC Interceptor"
},
"options_ui" : {
"page" : "options/options.html",
"browser_style" : true
},
"applications": {
"gecko": {
"id": "raceocat@javan.de"
}
}
}