Make Copy URL use native clipboard host
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// Keep this filename versioned. Chromium caches service workers for extensions
|
||||
// loaded via --load-extension, so a new URL forces registration of new code.
|
||||
|
||||
function copyUrl(url) {
|
||||
if (!url) return;
|
||||
|
||||
// The native host owns both the Wayland clipboard and confirmation toast.
|
||||
chrome.runtime.sendNativeMessage('com.omarchy.copy_url', { url }, () => {
|
||||
void chrome.runtime.lastError;
|
||||
});
|
||||
}
|
||||
|
||||
chrome.commands.onCommand.addListener((command) => {
|
||||
if (command !== 'copy-url') return;
|
||||
|
||||
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
|
||||
copyUrl(tabs[0] && tabs[0].url);
|
||||
});
|
||||
});
|
||||
|
||||
chrome.action.onClicked.addListener((tab) => {
|
||||
copyUrl(tab && tab.url);
|
||||
});
|
||||
Reference in New Issue
Block a user