Type-J

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

Type-J क्या है?

Type-J ignatif द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Escape the writer's block. Powered by GPT-J"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Type-J एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}