Skip to content

Commit 470d353

Browse files
committed
Made About modal author links open new tabs ↞ [auto-sync from https://github.com/adamlui/ai-web-extensions/tree/main/amazongpt]
1 parent a822f24 commit 470d353

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

chatgpt/amazongpt/amazongpt.user.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// @description Add AI chat & product/category summaries to Amazon shopping, powered by the latest LLMs like GPT-4o!
44
// @author KudoAI
55
// @namespace https://kudoai.com
6-
// @version 2025.10.15.1
6+
// @version 2025.10.15.2
77
// @license MIT
88
// @icon https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon48.png?v=8e8ed1c
99
// @icon64 https://amazongpt.kudoai.com/assets/images/icons/app/black-gold-teal/icon64.png?v=8e8ed1c
@@ -1233,8 +1233,9 @@
12331233
const aboutModal = modals.alert(
12341234
`${app.symbol} ${app.msgs.appName}`, // title
12351235
`<span style="${labelStyles}">🧠 ${app.msgs.about_author}:</span> `
1236-
+ `<a href="${app.author[0].url}">${app.author[0].name}</a> ${app.msgs.about_and}`
1237-
+ ` <a href="${app.urls.contributors}">${app.msgs.about_contributors}</a>\n`
1236+
+ `<a href="${app.author[0].url}" target="_blank" rel="nopener">${app.author[0].name}</a> `
1237+
+ `${app.msgs.about_and} <a href="${app.urls.contributors}" target="_blank" rel="nopener">`
1238+
+ `${app.msgs.about_contributors}</a>\n`
12381239
+ `<span style="${labelStyles}">🏷️ ${app.msgs.about_version}:</span> `
12391240
+ `<span class="about-em">${app.version}</span>\n`
12401241
+ `<span style="${labelStyles}">📜 ${app.msgs.about_openSourceCode}:</span> `

0 commit comments

Comments
 (0)