GPT-3 Anywhere

Makes Open AI API calls and adds the results to websites' text inputs

Τι είναι το GPT-3 Anywhere;

Το GPT-3 Anywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον hacksocial.ai, και η κύρια λειτουργία του είναι "Makes Open AI API calls and adds the results to websites' text inputs".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GPT-3 Anywhere

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

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

                        Use OpenAI's Playground on any website that accepts text input. Type /g followed by your prompt, then /s to submit your prompt for a completion. Your prompt will be included with the completion. 

e.g. /g"YOUR PROMPT HERE"/s
-> "YOUR PROMPT HERE" "COMPLETION HERE

GPT3 on any website, at any time. GPT-3 Anywhere. 

Write blog posts on Medium or Wix or Wordpress using GPT-3. The power of ChatGPT on any website on Chrome. Just type the trigger /g followed by your prompt followed by /s and receive a completion from any model you have access to in OpenAI's playground -- including your own finetuned models! 

Adjust the temperature, maximum length, stop sequences, and other variables just like in the playground.

Note: You need an API key from OpenAI to use this extension. Sign up for an account and get an API key here: https://platform.openai.com/account/api-keys                    

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

Όνομα GPT-3 Anywhere GPT-3 Anywhere
ID ehjlgmphmipkpedoadmdgkodhgmdandc
Επίσημο URL https://chromewebstore.google.com/detail/gpt-3-anywhere/ehjlgmphmipkpedoadmdgkodhgmdandc
Περιγραφή Makes Open AI API calls and adds the results to websites' text inputs
Μέγεθος Αρχείου 646 KB
Αριθμός Εγκαταστάσεων 1,600
Τρέχουσα Έκδοση 1.1.2
Τελευταία Ενημέρωση 2023-03-23
Ημερομηνία Δημοσίευσης 2022-10-10
Προγραμματιστής hacksocial.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://www.freeprivacypolicy.com/live/abb1a3a5-6311-43da-a78d-dcdb56ab1416
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT-3 Anywhere",
    "version": "1.1.2",
    "action": {
        "detauls_title": "Start Setup"
    },
    "description": "Makes Open AI API calls and adds the results to websites' text inputs",
    "icons": {
        "48": "icon48.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "match_about_blank": true,
            "match_origin_as_fallback": true
        }
    ],
    "author": "David Frankle",
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        ""
    ],
    "permissions": [
        "storage",
        "clipboardWrite",
        "clipboardRead"
    ]
}