24 lines
690 B
JavaScript
24 lines
690 B
JavaScript
// 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);
|
|
});
|