Suggesty
Get human-like answers powered by GPT-3 to your Google searches
Vad är Suggesty?
Suggesty är en Chrome-tillägg utvecklad av Sergey Bunas, och dess huvudfunktion är "Get human-like answers powered by GPT-3 to your Google searches".
Tilläggsskärmbilder
Ladda ner Suggesty-förlängningens CRX-fil
Ladda ner Suggesty-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
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!
Grundläggande Information om Tillägg
Namn | Suggesty |
ID | hbiphmiliockggpepniplkkfmnhdihjh |
Officiell webbadress | https://chromewebstore.google.com/detail/suggesty/hbiphmiliockggpepniplkkfmnhdihjh |
Beskrivning | Get human-like answers powered by GPT-3 to your Google searches |
Filstorlek | 12.36 KB |
Antal Installationer | 3,351 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2022-11-26 |
Publiceringsdatum | 2022-08-24 |
Betyg | 4.20/5 Totalt 20 Betyg |
Utvecklare | Sergey Bunas |
E-post | [email protected] |
Betalningssätt | in_app |
URL till Sekretesspolicy Sidan | https://replai.so/privacy_policy |
Stödda Språk | 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" ] } |