Type-J
Escape the writer's block. Powered by GPT-J
Type-J là gì?
Type-J là một tiện ích mở rộng Chrome được phát triển bởi ignatif, và tính năng chính của nó là "Escape the writer's block. Powered by GPT-J".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Type-J
Tải xuống các tệp mở rộng Type-J dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Type-J |
ID | femdhcgkiiagklmickakfoogeehbjnbh |
URL Chính Thức | https://chromewebstore.google.com/detail/type-j/femdhcgkiiagklmickakfoogeehbjnbh |
Mô tả | Escape the writer's block. Powered by GPT-J |
Kích Thước Tệp | 182 KB |
Số Lần Cài Đặt | 22 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2021-07-31 |
Ngày Phát Hành | 2021-07-31 |
Nhà Phát Triển | ignatif |
[email protected] | |
Loại Thanh Toán | in_app |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |