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"입니다.

확장 프로그램 스크린샷

screenshot

Type-J 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
이메일 [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"
    }
}