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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}