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 |
公式URL | 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 |
Eメール | [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" } } |