ChatGPT Prompt Library

ChatGPT prompts for everyone

Qu'est-ce que ChatGPT Prompt Library ?

ChatGPT Prompt Library est une extension Chrome développée par Practical AI, et sa fonction principale est "ChatGPT prompts for everyone".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPT Prompt Library

Téléchargez les fichiers d'extension ChatGPT Prompt Library au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT Prompt Library ChatGPT Prompt Library
ID kiaoanbjmabpebanpdclaijlhmmcphkh
URL Officiel https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh
Description ChatGPT prompts for everyone
Taille du Fichier 34.63 KB
Nombre d'Installations 1,625
Version Actuelle 0.1.6
Dernière Mise à Jour 2023-08-27
Date de Publication 2023-03-01
Évaluation 3.70/5 Total 10 Évaluations
Développeur Practical AI
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://linktr.ee/practical.ai
URL de la Page d'Aide https://linktr.ee/practical.ai
URL de la Page de Politique de Confidentialité https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
Langues Prises en Charge 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"
            ]
        }
    ]
}