diff --git a/chrome.html b/chrome.html index 28d8caf..9431ea3 100644 --- a/chrome.html +++ b/chrome.html @@ -710,7 +710,8 @@ ? '' : (t.favicon ? `` : ''); const mute = t.muted ? `🔇` : ""; - out += `
${icon}${(t.title||"New Tab").replace(/${mute}✕
`; + const tt = ((t.title || "New Tab") + (t.url ? "\n" + t.url : "")).replace(/"/g, """); + out += `
${icon}${(t.title||"New Tab").replace(/${mute}✕
`; return out; }).join("") + `+`;