ChatGPT Prompt Library

ChatGPT prompts for everyone

Τι είναι το ChatGPT Prompt Library;

Το ChatGPT Prompt Library είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Practical AI, και η κύρια λειτουργία του είναι "ChatGPT prompts for everyone".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Prompt Library

Λήψη αρχείων επέκτασης ChatGPT Prompt Library σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Prompt Library ChatGPT Prompt Library
ID kiaoanbjmabpebanpdclaijlhmmcphkh
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh
Περιγραφή ChatGPT prompts for everyone
Μέγεθος Αρχείου 34.63 KB
Αριθμός Εγκαταστάσεων 1,625
Τρέχουσα Έκδοση 0.1.6
Τελευταία Ενημέρωση 2023-08-27
Ημερομηνία Δημοσίευσης 2023-03-01
Αξιολόγηση 3.70/5 Συνολικά 10 Αξιολογήσεις
Προγραμματιστής Practical AI
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://linktr.ee/practical.ai
Διεύθυνση URL της Σελίδας Βοήθειας https://linktr.ee/practical.ai
URL της Σελίδας Πολιτικής Απορρήτου https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}