目前非 Plus 用户无法创建 GPTs 但可以访问除绘图外的几乎所有GPTs
简单上手
方法一
访问 shared站,左上角点击
![]()
然后点击 探索 GPT 就可以使用GPTs了,目前绘图类GPTs还无法使用
该方法适合大部分人
方法二
你需要知道 GPTs 的 ID,把 ID 拼接到 https://shared.oaifree.com/g/ 尾部即为相应 GPTs 的访问地址。如 LinuxDo论坛的 ID 是 g-tzxVAmLAd-linux-do,拼接后的地址就是
该方法适合经常访问特定GPTs,把地址保存到地址栏即可快速访问
一些常见的 GPTs ID
| 名称 | ID |
|---|---|
| DALL-E | g-2fkFE8rbu-dall-e (暂不可用) |
| Data Analyst | g-HMNcP6w7d-data-analyst |
| Write For Me | g-B3hgivKK9-write-for-me |
| Code Copilot | g-2DQzU5UZl-code-copilot |
方法三
使用油猴脚本重定向,直接访问 GPTs 的地址,会自动跳转到 shared站
可以在下面网站寻找到您心仪的GPTs,直接点击 GPTs 访问地址即可使用
- https://gptsfinder.net
- https://www.searchagpt.com
- 发下之前搜集的一些GPTs相关资源
该方法适合喜欢探索 GPTs 的朋友
// ==UserScript==
// @name Redirect ChatGPT URLs
// @namespace http://linux.do
// @version 0.1
// @description Redirect URLs starting with https://chatgpt.com/ to https://shared.oaifree.com/
// @author Reno
// @match https://chatgpt.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Redirect function
function redirectUrls() {
var currentUrl = window.location.href;
// Check if the current URL starts with https://chatgpt.com/
if (currentUrl.startsWith("https://chatgpt.com/")) {
// Redirect to https://shared.oaifree.com/
var newUrl = currentUrl.replace("https://chatgpt.com/", "https://shared.oaifree.com/");
window.location.href = newUrl;
}
}
// Execute the redirect function immediately
redirectUrls();
// Optional: If you want to monitor URL changes and redirect dynamically
window.addEventListener('load', function() {
// Monitor URL changes in case of single-page applications
window.addEventListener('hashchange', redirectUrls);
window.addEventListener('popstate', redirectUrls);
});
})();


