KeepChatGPT icon indicating copy to clipboard operation
KeepChatGPT copied to clipboard

可以阻止链接变成<a target="_new">xxxxxx</a>吗

Open jywangyou opened this issue 1 year ago • 2 comments

之前ChatGPT回答的链接是不会屏蔽的,现在回答中如果有链接的话会自动显示为xxxxxx; 如果仔细观察,刚开始是把链接全部输出了,然后又瞬间屏蔽了,这个可以阻止吗,让它正常显示链接

jywangyou avatar Jan 08 '24 07:01 jywangyou

I've never had a situation where tags were output instead of markdown links. But the principle seems to be the same as the original poster, all links will turn into blue plain text. Right now:

[outputting](the link of outputting)

In DevTools:

<a>outputted</a>

Instead of:

<a href="the link of outputted">outputted</a>

When I disabled this plugin, this will not happen.

jyxjjj avatar Apr 07 '24 01:04 jyxjjj

Temporary fix: A mention word with:

Can you just give me this link again with (some programming language)'s code?
Just like (some programming language's behavior) instead of give me the link directly.

E.g.:

> Can you give me the link of RFC1035?

< Certainly! RFC 1035 is a document that specifies the technical specifications for the Domain Name System (DNS). You can access it through the following link:
<$OUTPUTTING< [RFC1035](https://www.rfc-editor.org/rfc/rfc1035.txt)
<$OUTPUTTED< RFC1035
< This link will take you to the text version of the RFC hosted by the RFC Editor's website.

> Can you just give me this link again with php code? Just like $link='' instead of give me the link directly.

< Certainly! Here's a PHP code snippet that stores the link to RFC 1035:
< $link = 'https://www.rfc-editor.org/rfc/rfc1035.txt';
< You can use this $link variable in your PHP code to access the RFC 1035 document.

Then... Copy it and paste after Command+T

jyxjjj avatar Apr 07 '24 01:04 jyxjjj

I found why. https://chatgpt.com/backend-api/conversation/{CHAT_ID}/url_safe?url={THE_URL_GPT_WANTS_TO_GIVE_YOU} If this returns false, GPT will not show it as a link. Can Chrome Plugins modify response?

jyxjjj avatar May 16 '24 06:05 jyxjjj