forked from stephanmahieu/formhistorycontrol-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
131 lines (122 loc) · 3.05 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"manifest_version": 2,
"short_name": "FormHistCtrl",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "2.3.1.0",
"developer": {
"name": "Stephan Mahieu",
"url": "https://stephanmahieu.github.io/fhc-home/"
},
"default_locale": "en",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
},
"permissions": [
"menus",
"notifications",
"activeTab",
"tabs",
"storage",
"alarms"
],
"icons": {
"16": "theme/icons/fhc-16.png",
"32": "theme/icons/fhc-32.png",
"48": "theme/icons/fhc-48.png",
"64": "theme/icons/fhc-64.png",
"128": "theme/icons/fhc-128.png",
"129": "theme/icons/fhc_icon.svg"
},
"options_ui": {
"open_in_tab": true,
"browser_style": false,
"page": "popup/options/options.html"
},
"background": {
"scripts": [
"common/browser-polyfill.min.js",
"common/DbConst.js",
"common/CleanupConst.js",
"common/WindowUtil.js",
"common/OptionsUtil.js",
"common/DateUtil.js",
"common/MiscUtil.js",
"background/receiveFormData.js",
"background/contextmenu.js",
"background/applicationIcon.js"
]
},
"content_scripts": [
{
"js": [
"common/browser-polyfill.min.js",
"common/purify.js",
"content/collectFormData.js",
"content/showFormData.js",
"content/auto-complete.js",
"content/add-auto-complete.js"
],
"css": [
"content/auto-complete.css"
],
"matches": ["*://*/*", "file:///*"],
"run_at": "document_end",
"all_frames" : true
}
],
"browser_action": {
"browser_style": false,
"default_icon": "theme/icons/fhc_icon.svg",
"default_title": "__MSG_extensionName__",
"default_popup": "popup/tableview/popup-small.html"
},
"page_action": {
"browser_style": false,
"default_title": "__MSG_extensionName__",
"default_popup": "popup/pageaction/pageaction.html",
"default_icon": "theme/icons/fhc_icon_bw.svg",
"show_matches": ["*://*/*", "file:///*"]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Opens the popdown FHC dialog"
},
"open_fhc": {
"suggested_key": {
"default": "Alt+Shift+F"
},
"description": "Open the main FHC dialog"
},
"toggle_display_fields": {
"suggested_key": {
"default": "Alt+Shift+D"
},
"description": "Show/hide formfields on the current page"
},
"fill_recent": {
"suggested_key": {
"default": "Alt+Shift+R"
},
"description": "Fill fields with most recent used entries"
},
"fill_often": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Fill fields with most often used entries"
},
"clear_filled": {
"suggested_key": {
"default": "Alt+Shift+C"
},
"description": "Clear filled fields"
}
}
}