forked from annnhan/ReRes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 910 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 910 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
{
"name": "ReRes",
"version": "1.8.1",
"description": "Change the response of the request. ReRes可以用来更改页面请求响应的内容。通过指定规则,您可以把请求映射到其他的url,也可以映射到本机的文件或者目录。ReRes支持单个url映射,也支持目录映射。",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"default_title": "ReRes",
"default_popup": "popup.html"
},
"options_page": "options.html",
"background": {
"scripts": ["background.js"],
"persistent": true
},
"icons":
{
"16": "icon.png",
"48": "icon48.png"
},
"permissions": [
"tabs",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"unlimitedStorage"
],
"update_url": "http://clients2.google.com/service/update2/crx"
}