ChatGPT Prompts
ChatGPT Prompts
Wat is ChatGPT Prompts?
ChatGPT Prompts is een Chrome-extensie ontwikkeld door Cem PEHLİVAN, en de belangrijkste functie is "ChatGPT Prompts".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT Prompts
Download ChatGPT Prompts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This is a collection of prompt examples to be used with the ChatGPT model. The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the conversation or expand on the given prompt. In this extension, you will find a variety of prompts that can be used with ChatGPT. Enter "https://chat.openai.com/chat". Thanks to this plugin, you will see ready prompts prepared for you on the homepage. We hope you find these prompts useful and have fun using ChatGPT! Thanks! https://github.com/f/awesome-chatgpt-prompts
Basisinformatie over de Extensie
Naam | ChatGPT Prompts |
ID | igaldenhhkaelahplnglcdcfmmhhmgdj |
Officiële URL | https://chromewebstore.google.com/detail/chatgpt-prompts/igaldenhhkaelahplnglcdcfmmhhmgdj |
Beschrijving | ChatGPT Prompts |
Bestandsgrootte | 31.55 KB |
Aantal Installaties | 10,000 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2023-03-01 |
Publicatiedatum | 2022-12-21 |
Beoordeling | 3.77/5 Totaal 13 Beoordelingen |
Ontwikkelaar | Cem PEHLİVAN |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/cempehlivan/chatgpt-prompt-chrome-extension |
Help Pagina-URL | https://github.com/cempehlivan/chatgpt-prompt-chrome-extension |
Ondersteunde Talen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Prompts", "version": "0.3.0", "description": "ChatGPT Prompts", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "default_title": "ChatGPT Prompts" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |