Skip to content

Commit 63403d1

Browse files
committed
closes philc#4572
- checking if navigator.clipboard is available - showing warning HUD message when clipboard unavailable - affects HTTP-only sites in non-Chromium browsers
1 parent 654edf2 commit 63403d1

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

content_scripts/hud.js

+11
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,17 @@ const HUD = {
183183
});
184184
},
185185

186+
// Clipboard actions are only available in secure contexts.
187+
// In Chromium based browsers this can be allowed via Permissions API's
188+
// clipboard-read and clipboard-write permissions.
189+
// Give a little warning when copying fails on HTTP only site. See #4572
190+
clipboardUnavailableError() {
191+
DomUtils.documentComplete(async () => {
192+
await this.init();
193+
this.show("Clipboard actions are unavailable on HTTP-only sites in your browser.", 2000)
194+
});
195+
},
196+
186197
pasteResponse({ data }) {
187198
// Hide the HUD frame again.
188199
this.hudUI.toggleIframeElementClasses("vimiumUIComponentVisible", "vimiumUIComponentHidden");

pages/hud.js

+14
Original file line numberDiff line numberDiff line change
@@ -160,8 +160,20 @@ const handlers = {
160160
countElement.textContent = showMatchText ? countText : "";
161161
},
162162

163+
// Navigator.clipboard is only available in secure contexts.
164+
// Give a little warning when copying fails on HTTP only site. See #4572
165+
isClipboardAvailable() {
166+
if (!navigator.clipboard) {
167+
UIComponentServer.postMessage( { name: "clipboardUnavailableError" });
168+
return false;
169+
}
170+
return true;
171+
},
172+
163173
copyToClipboard(message) {
164174
Utils.setTimeout(TIME_TO_WAIT_FOR_IPC_MESSAGES, async function () {
175+
if (!handlers.isClipboardAvailable()) return;
176+
165177
const focusedElement = document.activeElement;
166178
// In Chrome, if we do not focus the current window before invoking navigator.clipboard APIs,
167179
// the error "DOMException: Document is not focused." is thrown.
@@ -179,6 +191,8 @@ const handlers = {
179191

180192
pasteFromClipboard() {
181193
Utils.setTimeout(TIME_TO_WAIT_FOR_IPC_MESSAGES, async function () {
194+
if (!handlers.isClipboardAvailable()) return;
195+
182196
const focusedElement = document.activeElement;
183197
// In Chrome, if we do not focus the current window before invoking navigator.clipboard APIs,
184198
// the error "DOMException: Document is not focused." is thrown.

0 commit comments

Comments
 (0)