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 |
| 公式URL | 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 |
| Eメール | [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"
} | |