Type-J
Escape the writer's block. Powered by GPT-J
Vad är Type-J?
Type-J är en Chrome-tillägg utvecklad av ignatif, och dess huvudfunktion är "Escape the writer's block. Powered by GPT-J".
Tilläggsskärmbilder
Ladda ner Type-J-förlängningens CRX-fil
Ladda ner Type-J-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
A tool which helps you escape the writing block by providing you infinite text suggestions generated by GPT-J neural network. How it works: when typing in any textarea: - Press Tab to see a suggestion - Press Arrow down/up to show next/previous suggestion - Press Arrow right/left to increase/decrease suggestion size (there are 6 options: word, phrase, sentence, paragraph, half-article and article) - Press Enter to insert selected suggestion into textarea That's basically it but possibilities are endless. From one prompt you can receive infinite amount of suggestions. You can test the tool here: https://txtboo.com/type or any other website with textarea (doesn't work on Medium, Twitter, and some other places yet because they are handling text input different way) Happy using ☺️ and stay tuned for updates
Grundläggande Information om Tillägg
Namn | Type-J |
ID | femdhcgkiiagklmickakfoogeehbjnbh |
Officiell webbadress | https://chromewebstore.google.com/detail/type-j/femdhcgkiiagklmickakfoogeehbjnbh |
Beskrivning | Escape the writer's block. Powered by GPT-J |
Filstorlek | 182 KB |
Antal Installationer | 22 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2021-07-31 |
Publiceringsdatum | 2021-07-31 |
Utvecklare | ignatif |
E-post | [email protected] |
Betalningssätt | in_app |
Stödda Språk | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Type-J", "description": "Escape the writer's block. Powered by GPT-J", "version": "0.2", "manifest_version": 3, "icons": { "128": "assets\/logo.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "assets\/index.css" ], "js": [ "index.js", "lib\/caretPosition.js" ] } ], "action": { "default_icon": "assets\/logo.png", "default_title": "Type-J", "default_popup": ".\/build\/index.html" } } |