Auto Ask GPT

Split one question to questions and automatically ask ChatGPT one by one

Vad är Auto Ask GPT?

Auto Ask GPT är en Chrome-tillägg utvecklad av Frank Lin, och dess huvudfunktion är "Split one question to questions and automatically ask ChatGPT one by one".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Auto Ask GPT-förlängningens CRX-fil

Ladda ner Auto Ask GPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        There’re two ways to use it:

1. Ask the ChatGPT with numbered questions, then the plug-in will automatically ask ChatGPT individually.
It will treat paragraphs without numbers as reference data.

2. Just input a goal and click the AUTO ASK button will ask ChatGPT to make a flowchart and expand the elements.                    

Grundläggande Information om Tillägg

Namn Auto Ask GPT Auto Ask GPT
ID maeilghlholccdncelacheicmopppogo
Officiell webbadress https://chromewebstore.google.com/detail/auto-ask-gpt/maeilghlholccdncelacheicmopppogo
Beskrivning Split one question to questions and automatically ask ChatGPT one by one
Filstorlek 7 KB
Antal Installationer 84
Aktuell Version 1.0.2
Senast Uppdaterad 2023-05-02
Publiceringsdatum 2023-04-25
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Frank Lin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/etrobot/FreeAGI
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Auto Ask GPT",
    "version": "1.0.2",
    "description": "Split one question to questions and automatically ask ChatGPT one by one",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "128": "autoAskIcon.png"
    }
}