Type-J

Escape the writer's block. Powered by GPT-J

Type-Jคืออะไร?

Type-J เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ignatif และคุณลักษณะหลักของมันคือ "Escape the writer's block. Powered by GPT-J"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Type-J

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}