GPT3-slack

GPT-3 for slack web

Τι είναι το GPT3-slack;

Το GPT3-slack είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον anchen, και η κύρια λειτουργία του είναι "GPT-3 for slack web".

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

screenshot

Λήψη αρχείου CRX της επέκτασης GPT3-slack

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

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

                        There is an extension for Slack web to check the grammar of your messages.
1.Get your API key from OpenAI's website: https://openai.com/api/
2.Click on the extension icon.
3.Paste your key and save.
4.Open Slack in your browser. In the input box, the trencher cap icon is for correcting grammar and the light bulb Icon is for text generation.
5. Enjoy!

Updated:
- We are now utilizing the chatGPT model from OpenAI in order to reduce costs.
- There has been an update to the OpenAI policy, and as a result, data cannot be used for model training. For more information on this policy change, please refer to https://platform.openai.com/docs/guides/chat/do-you-store-the-data-that-is-passed-into-the-api.                    

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

Όνομα GPT3-slack GPT3-slack
ID liiikponmocoggainemclbgbjnpheifd
Επίσημο URL https://chromewebstore.google.com/detail/gpt3-slack/liiikponmocoggainemclbgbjnpheifd
Περιγραφή GPT-3 for slack web
Μέγεθος Αρχείου 207 KB
Αριθμός Εγκαταστάσεων 43
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2023-03-13
Ημερομηνία Δημοσίευσης 2022-12-01
Προγραμματιστής anchen
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT3-slack",
    "description": "GPT-3 for slack web",
    "version": "1.2.1",
    "manifest_version": 3,
    "icons": {
        "128": "images\/logo-128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.slack.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/correct.png",
                "images\/generate.png"
            ],
            "matches": [
                "*:\/\/*.slack.com\/*"
            ]
        }
    ]
}