ChatGPT Prompt Library

ChatGPT prompts for everyone

Wat is ChatGPT Prompt Library?

ChatGPT Prompt Library is een Chrome-extensie ontwikkeld door Practical AI, en de belangrijkste functie is "ChatGPT prompts for everyone".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ChatGPT Prompt Library

Download ChatGPT Prompt Library-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 prompts to be used with the ChatGPT. Browse them in the Chrome window or download as a .csv file. Isn't it convenient? ;) 

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.

Visit "https://chat.openai.com/chat" to use this extension.                    

Basisinformatie over de Extensie

Naam ChatGPT Prompt Library ChatGPT Prompt Library
ID kiaoanbjmabpebanpdclaijlhmmcphkh
Officiële URL https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh
Beschrijving ChatGPT prompts for everyone
Bestandsgrootte 34.63 KB
Aantal Installaties 1,625
Huidige Versie 0.1.6
Laatst Bijgewerkt 2023-08-27
Publicatiedatum 2023-03-01
Beoordeling 3.70/5 Totaal 10 Beoordelingen
Ontwikkelaar Practical AI
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://linktr.ee/practical.ai
Help Pagina-URL https://linktr.ee/practical.ai
URL van de Privacybeleid Pagina https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Prompt Library",
    "version": "0.1.6",
    "description": "ChatGPT prompts for everyone",
    "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 Prompt Library",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}