feat: url cleaner tool and extension update

This commit is contained in:
2026-02-27 06:11:12 +00:00
parent efe23a99ac
commit 7d989be27f
4 changed files with 37 additions and 2 deletions

View File

@@ -46,6 +46,17 @@ window.addEventListener('message', (event) => {
// ignore
}
}
if (event.data.type === 'TOOLS_APP_CLIPBOARD_WRITE') {
try {
chrome.runtime.sendMessage({
action: 'writeClipboard',
content: event.data.content
});
} catch (e) {
console.warn('Tools App Extension: Write clipboard failed', e);
}
}
});
// Listen for messages from the Extension Background