forked from Xelio/requestly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (31 loc) · 819 Bytes
/
manifest.json
File metadata and controls
37 lines (31 loc) · 819 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
{
"name": "Requestly",
"version": "2.2",
"manifest_version": 2,
"description": "Chrome Extension to modify HTTP requests (Redirect | Cancel | Replace)",
"background": {
"scripts": [
"src/Shared/shared.js",
"src/background/storageService.js",
"src/background/background.js"
]
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"browser_action": {
"default_icon": "resources/images/256x256.png",
"default_title": "Modify your HTTP/HTTPS requests"
},
"icons": {
"16": "resources/images/256x256.png",
"48": "resources/images/256x256.png",
"128": "resources/images/256x256.png"
},
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"tabs",
"http://*/*",
"https://*/*"
]
}