Type-J
Escape the writer's block. Powered by GPT-J
什麼是Type-J?
Type-J是由ignatif開發的Chrome擴展程式,該擴展的主要功能是“Escape the writer's block. Powered by GPT-J”。
擴展截圖
下載Type-J擴展crx文件
下載Type-J擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Type-J |
ID | femdhcgkiiagklmickakfoogeehbjnbh |
官方網址 | https://chromewebstore.google.com/detail/type-j/femdhcgkiiagklmickakfoogeehbjnbh |
簡介 | Escape the writer's block. Powered by GPT-J |
檔案大小 | 182 KB |
安裝次數 | 22 |
目前版本 | 0.2 |
更新時間 | 2021-07-31 |
上架時間 | 2021-07-31 |
開發者 | ignatif |
電子郵箱 | [email protected] |
付費類型 | in_app |
支援的語言 | 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" } } |