ImageGPT
Provide images based on Dall-E and its customization
Vad är ImageGPT?
ImageGPT är en Chrome-tillägg utvecklad av quizgpt, och dess huvudfunktion är "Provide images based on Dall-E and its customization".
Tilläggsskärmbilder
Ladda ner ImageGPT-förlängningens CRX-fil
Ladda ner ImageGPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | eagnpdcipbkhfkhopaehelppanagdlij |
| Officiell webbadress | https://chromewebstore.google.com/detail/imagegpt/eagnpdcipbkhfkhopaehelppanagdlij |
| Beskrivning | Provide images based on Dall-E and its customization |
| Filstorlek | 582 KB |
| Antal Installationer | 37 |
| Aktuell Version | 1.0.5 |
| Senast Uppdaterad | 2023-09-21 |
| Publiceringsdatum | 2023-05-15 |
| Utvecklare | quizgpt |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://www.quizgpt.net/ |
| Hjälpsida URL | http://www.quizgpt.net/contact |
| URL till Sekretesspolicy Sidan | http://quizgpt.net/pages/terms |
| Stödda Språk | 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"
]
}
]
} | |