-
Notifications
You must be signed in to change notification settings - Fork 75
/
manifest.json
37 lines (37 loc) · 866 Bytes
/
manifest.json
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": "Chrome Logger",
"version": "4.1.2",
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["log.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["chromelogger.js"]
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"description": "For server side logging and debugging in chrome console.",
"browser_action": {
"default_icon": "icon38_disabled.png",
"default_title": "Chrome Logger"
},
"minimum_chrome_version": "17",
"manifest_version": 2,
"permissions":
[
"webRequest",
"tabs",
"http://*/*",
"https://*/*"
]
}