-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
82 lines (67 loc) · 1.77 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
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionShortName__",
"description": "__MSG_extensionDescription__",
"version": "3.4.4",
"author": "Brett Zamir",
"homepage_url": "https://github.com/brettz9/webappfind",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"optional_permissions": [
"bookmarks",
"browserSettings",
"clipboardRead",
"clipboardWrite",
"cookies",
"geolocation",
"idle",
"notifications",
"topSites",
"webRequestBlocking"
],
"$$$comment-optional-permissions": "`background`, `contentSettings`, `debugger`, `management`, `pageCapture` were giving console warnings",
"permissions": [
"nativeMessaging", "<all_urls>",
"contextMenus", "activeTab", "tabs", "webNavigation", "history",
"webRequest",
"unlimitedStorage",
"alarms",
"browsingData",
"contextualIdentities",
"downloads",
"downloads.open",
"find",
"identity",
"menus",
"pkcs11",
"privacy",
"proxy",
"sessions",
"storage",
"tabHide",
"theme"
],
"default_locale": "en",
"browser_action": {
"browser_style": true,
"default_area": "navbar",
"default_icon": "/executable-builder/executable.svg",
"default_title": "__MSG_browser_action_title__",
"default_popup": "/executable-builder/index.html"
},
"background": {
"page": "/lib/background.html"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true,
"open_in_tab": false
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "63.0"
}
}
}