diff --git a/content.js b/content.js index ca10a7b..8e3d03a 100644 --- a/content.js +++ b/content.js @@ -11,6 +11,7 @@ document.addEventListener('DOMContentLoaded', function() { links.forEach(link => { const uri = link.href.replace(/^(nostr|web+nostr):/, "").trim(); let text = link.title?.trim() || ''; + if (link.rel === "me") text = `Me: ${text}`; if (link.rel === "author") text = `Author: ${text}`; linkMap.set(uri, { diff --git a/test/example.html b/test/example.html index 62c4292..26c020d 100644 --- a/test/example.html +++ b/test/example.html @@ -6,9 +6,9 @@