-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest.json
96 lines (96 loc) · 2.36 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"all_frames": true,
"run_at": "document_idle",
"js": [
"js/fix-undefined-frames.js",
"js/lazarus.js",
"js/logger.js",
"js/menu.js",
"js/locale.js",
"js/strings.js",
"js/utils.js",
"js/mouse.js",
"js/dialog.js",
"js/content.js",
"js/platform.js",
"js/platform-chrome.js",
"js/content-init.js"
]
}
],
"browser_action": {
"default_icon": "images/toolbar-icon-disabled.png",
"default_title": "Lazarus: Form Recovery"
},
"name": "Lazarus: Form Recovery",
"icons": {
"128": "Icon-128.png",
"32": "Icon-32.png",
"48": "Icon-48.png",
"16": "Icon-16.png"
},
"web_accessible_resources": [
"background.html",
"disable-on-site.html",
"login.html",
"manifest-2.json",
"manifest.json",
"options.html",
"unit-tests.html",
"css/chrome-native-look.css",
"css/disable-on-site.css",
"css/firefox-dialog.css",
"css/firefox-overlay.css",
"css/jquery.msg.css",
"css/login.css",
"css/options.css",
"css/reset.css",
"images/button-green-small.png",
"images/close.png",
"images/error-32.png",
"images/info-32.png",
"images/lazarus-btn.png",
"images/loading-32.gif",
"images/loading-horizontal.gif",
"images/loading.gif",
"images/lock.png",
"images/logo-large.png",
"images/menu-background.png",
"images/options-bg.png",
"images/star.png",
"images/success-32.png",
"images/success.png",
"images/toolbar-icon-cancel.png",
"images/toolbar-icon-disabled-safari.png",
"images/toolbar-icon-disabled.png",
"images/toolbar-icon-enabled-safari.png",
"images/toolbar-icon-enabled.png",
"images/toolbar-icon-enabling.png",
"images/toolbar-icon-locked.png",
"images/toolbar-icon-warning.png",
"images/update.png",
"images/warning-32.png",
"images/warning.png"
],
"manifest_version": 2,
"version": "3.2.2.692",
"options_ui": {
"page": "options.html",
"browser_style": false,
"open_in_tab": true
},
"background": {
"page": "background.html"
},
"permissions": [
"http://*/*",
"https://*/*",
"tabs"
]
}