2 parents 618c0df + 806e329 commit cb38a30Copy full SHA for cb38a30
1 file changed
src/chrome/content/toolbar_button.js
@@ -146,11 +146,15 @@ httpsEverywhere.toolbarButton = {
146
'https-everywhere',
147
'chrome://https-everywhere/skin/https-everywhere-24.png',
148
nBox.PRIORITY_WARNING_MEDIUM,
149
- [],
150
- function(action) {
151
- // see https://developer.mozilla.org/en-US/docs/XUL/Method/appendNotification#Notification_box_events
152
- gBrowser.selectedTab = gBrowser.addTab(faqURL);
153
- });
+ [
+ { accessKey: 'F',
+ callback: function(ntf, btn) {
+ // see https://developer.mozilla.org/en-US/docs/XUL/Method/appendNotification#Notification_box_events
+ gBrowser.selectedTab = gBrowser.addTab(faqURL);
154
+ },
155
+ label: 'FAQ…',
156
+ }
157
+ ]);
158
}
159
gBrowser.removeEventListener("DOMContentLoaded", tb.handleShowHint, true);
160
},
0 commit comments