ImageGPT
Provide images based on Dall-E and its customization
什麼是ImageGPT?
ImageGPT是由quizgpt開發的Chrome擴展程式,該擴展的主要功能是“Provide images based on Dall-E and its customization”。
擴展截圖
下載ImageGPT擴展crx文件
下載ImageGPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
ImageGPT is a real-time image generation and customizing based on Open AI's Dall-E. This is an easy AI platform technology that provides easy prompt-based image generation tool.
Our platform provides a wide range of features, including image generation, customizing prompt and editing image. Users can select their preferred option and access our content on chrome browser easily. 擴展基本資訊
| 名稱 | |
| ID | eagnpdcipbkhfkhopaehelppanagdlij |
| 官方網址 | https://chromewebstore.google.com/detail/imagegpt/eagnpdcipbkhfkhopaehelppanagdlij |
| 簡介 | Provide images based on Dall-E and its customization |
| 檔案大小 | 582 KB |
| 安裝次數 | 37 |
| 目前版本 | 1.0.5 |
| 更新時間 | 2023-09-21 |
| 上架時間 | 2023-05-15 |
| 開發者 | quizgpt |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | http://www.quizgpt.net/ |
| 說明頁面URL | http://www.quizgpt.net/contact |
| 隱私政策頁面URL | http://quizgpt.net/pages/terms |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.0.5",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"permissions": [
"downloads",
"storage",
"background",
"clipboardRead"
],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"action": {
"default_popup": "popup.html"
},
"web_accessbile_resources": [
"logo.png"
],
"externally_connectable": {
"matches": [
"*:\/\/*\/*"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content-script.js"
]
}
]
} | |