-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (42 loc) · 1.04 KB
/
manifest.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "1.2",
"manifest_version": 2,
"default_locale": "en",
"homepage_url": "https://www.proxy302.com",
"browser_action": {
"default_popup": "popup.html",
"defalut_icon": "images/logo.png"
},
"options_page": "options.html",
"background": {
"scripts": ["js/utils.js", "js/jquery-3.5.1.min.js", "js/background.js"],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https://*.proxy302.com/*",
"http://*.proxy302.com/*"
],
"js": ["js/content.js"]
}
],
"icons": {
"16": "images/logo.png",
"32": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"browsingData",
"proxy",
"storage",
"unlimitedStorage"
]
}