Suggesty

Get human-like answers powered by GPT-3 to your Google searches

Suggesty란 무엇입니까?

Suggesty은(는) Sergey Bunas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get human-like answers powered by GPT-3 to your Google searches"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Suggesty 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With Suggesty extension, there is no need to scroll through all results pages - you can get the answer straight away.

How does it work?
We send your anonymized Google request to GPT-3 and display its answers on the Google page.

What can I do with that?
- Grammar correction. Type “fix grammar” to correct your sentence.
- Translation. You can easily translate your text into other languages. For example, type “translate to french my name is Nick”
- Recipes. Create a cocktail recipe from the ingredients you have.
- Any other request. Do you need a movie recommendation? Don’t you know how a refrigerator works? Do you need a step-by-step guide on how to achieve something? Just type that, and GPT-3 will cover you!                    

확장 프로그램 기본 정보

이름 Suggesty Suggesty
ID hbiphmiliockggpepniplkkfmnhdihjh
공식 URL https://chromewebstore.google.com/detail/suggesty/hbiphmiliockggpepniplkkfmnhdihjh
설명 Get human-like answers powered by GPT-3 to your Google searches
파일 크기 12.36 KB
설치 횟수 3,351
현재 버전 1.3
최근 업데이트 2022-11-26
출시 날짜 2022-08-24
평점 4.20/5 총 20 개의 평점
개발자 Sergey Bunas
이메일 [email protected]
결제 유형 in_app
개인정보 보호 정책 페이지 URL https://replai.so/privacy_policy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Suggesty",
    "description": "Get human-like answers powered by GPT-3 to your Google searches",
    "version": "1.3",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.google.com\/search*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}