GPT-Prompter

Fast custom prompts to GPT-3, GPT-4 and ChatGPT API

GPT-Prompter क्या है?

GPT-Prompter https://gptprompter.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Fast custom prompts to GPT-3, GPT-4 and ChatGPT API"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में GPT-Prompter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        An extension to have fast and custom prompts sent to OpenAI's GPT-3, GPT-4 and ChatGPT from every webpage.

Ensure the lowest cost for using GPT querying directly OpenAI`s API.

The extension works using your API Key from OpenAI.
Get one at: https://beta.openai.com/ (we never have access to it). 

This is an open source project available at GitHub: https://github.com/giosilvi/GPT-Prompter

***How to use it***
(On first install you need to reload the open webpages to have it working)
1. Click on the extension icon and insert your API KEY.
2. (optional) Select text on a web page.
3. Right-click, from the context menu select GPT-Prompter and choose a prompt!

Complete Guide: https://www.gptprompter.com/how-to-use-it

***Custom prompt***
You can customize the prompt as you like, but they always must contain the keyword #TEXT#.  It gets replaced with the text you select from the webpage.

***Models***
Multiple models with different capabilities and costs are available from OpenAI: 
- gpt-4 
- gpt-3.5-turbo 
- gpt-3.5-turbo-intruct (substitute davinci, curie,etc.)

***History and costs***
You can access and search through the history of your prompts and save them as JSON file.


***Latest***
v4.0: Added Instruct model, and remove stream for message (to make it work with v1/completions)
v3.4: Whisper API added. Codex model deprecated.
v3.3: Gpt-4 integration. Removed max tokens, now tokens are automatically computed from prompt.                    

एक्सटेंशन की मूल जानकारी

नाम GPT-Prompter GPT-Prompter
ID lcgpdbficokndjodlcgflbhaibicompp
आधिकारिक URL https://chromewebstore.google.com/detail/gpt-prompter/lcgpdbficokndjodlcgflbhaibicompp
विवरण Fast custom prompts to GPT-3, GPT-4 and ChatGPT API
फ़ाइल का आकार 949 KB
स्थापना संख्या 14,452
वर्तमान संस्करण 0.0.4.0
अंतिम अपडेट 2023-10-10
प्रकाशन तिथि 2022-07-27
रेटिंग 4.21/5 कुल 24 रेटिंग्स
डेवलपर https://gptprompter.com
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/25c43011-c58e-4198-b24a-1372ab85eb03
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT-Prompter",
    "version": "0.0.4.0",
    "description": "Fast custom prompts to GPT-3, GPT-4 and ChatGPT API",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/iconA16.png",
        "48": "icons\/NewiconA48.png",
        "128": "icons\/NewiconA128.png"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "commands"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.bundle.js",
                "markdown.bundle.js",
                "popup_world.bundle.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "GPT-Prompter"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "history.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "commands": {
        "prompt-on-the-fly": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Launches the Prompt-on-the-Fly functionality"
        },
        "chatGPT": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Launches the ChatGPT functionality"
        }
    }
}