EmbedGPT - Embed ChatGPT content
Share with one click and easily paste externally.
什麼是EmbedGPT - Embed ChatGPT content?
EmbedGPT - Embed ChatGPT content是由https://embedgpt.vercel.app開發的Chrome擴展程式,該擴展的主要功能是“Share with one click and easily paste externally.”。
擴展截圖
下載EmbedGPT - Embed ChatGPT content擴展crx文件
下載EmbedGPT - Embed ChatGPT content擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Easily share ChatGPT content with one click.
You can paste it to a forum as an iframe or share it to communities such as Twitter and Reddit. 擴展基本資訊
| 名稱 | |
| ID | nbjoccgcnhjmhpholoagaodhgiehbloa |
| 官方網址 | https://chromewebstore.google.com/detail/embedgpt-embed-chatgpt-co/nbjoccgcnhjmhpholoagaodhgiehbloa |
| 簡介 | Share with one click and easily paste externally. |
| 檔案大小 | 9.15 KB |
| 安裝次數 | 114 |
| 目前版本 | 1.2.2 |
| 更新時間 | 2023-04-26 |
| 上架時間 | 2023-03-02 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | https://embedgpt.vercel.app |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://embedgpt.vercel.app |
| 說明頁面URL | https://embedgpt.vercel.app |
| 支援的語言 | en,ko |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "__MSG_description__",
"version": "1.2.2",
"manifest_version": 3,
"name": "__MSG_name__",
"background": {
"service_worker": "background.bundle.js"
},
"permissions": [
"activeTab",
"scripting"
],
"action": {
"default_icon": {
"16": "16x16.png",
"32": "32x32.png"
},
"default_title": "Share Content"
},
"icons": {
"16": "16x16.png",
"32": "32x32.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/c\/*"
],
"js": [
"contentScript.bundle.js"
],
"run_at": "document_end"
}
],
"default_locale": "ko"
} | |