diff --git a/src/js/browser/tabutils/background.js b/src/js/browser/tabutils/background.js index e3dc16e1..e8107dcc 100644 --- a/src/js/browser/tabutils/background.js +++ b/src/js/browser/tabutils/background.js @@ -31,7 +31,7 @@ function pasteTabs() function copyCurrentTab() { chrome.tabs.query({ currentWindow: true, active: true }, (tabs) => { - const tabInfo = `- [${tabs[0].title}](${tabs[0].url})`; + const tabInfo = `[${tabs[0].title}](${tabs[0].url})`; writeToClipboard(tabInfo); }); }