iricardoxd commited on
Commit
f855d3c
·
verified ·
1 Parent(s): d90688a

Update proxy_extension/manifest.json

Browse files
Files changed (1) hide show
  1. proxy_extension/manifest.json +18 -0
proxy_extension/manifest.json CHANGED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0.0",
3
+ "manifest_version": 2,
4
+ "name": "Chrome Proxy",
5
+ "permissions": [
6
+ "proxy",
7
+ "tabs",
8
+ "unlimitedStorage",
9
+ "storage",
10
+ "<all_urls>",
11
+ "webRequest",
12
+ "webRequestBlocking"
13
+ ],
14
+ "background": {
15
+ "scripts": ["background.js"]
16
+ },
17
+ "minimum_chrome_version": "22.0.0"
18
+ }