From f383b76f69d481439d827c3cf2459e81e4e2ea0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Berke=20Kocao=C4=9Flu?= Date: Wed, 21 Aug 2024 08:21:46 +0300 Subject: [PATCH] tabutils: don't add list prefix when copying a single tab --- src/js/browser/tabutils/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); }