LeafLLM

LLM-based tools for Overleaf

LeafLLMคืออะไร?

LeafLLM เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bthink-bgu และคุณลักษณะหลักของมันคือ "LLM-based tools for Overleaf"

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย LeafLLM ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds the power of large-language models (LLMs) to Overleaf.com 
Using this addon, you can select text in Overleaf and ask LLM (e.g., OpenAI GPT) to complete this text or improve it. You write a question for the LLM, select it, and ask it.

After installing the extension, configure it by clicking on its icon, and following the instructions. 

Full instructions on the plugin's website.

Usage
*******
After selecting text, press:
- Alt+A to ask the LLM
- Alt+C to complete the selected text
- Alt+I to improve the selected text

Privacy
********
The plugin saves its configuration locally on the users' computer. The plugin sends the API key and the selected text to OpenAI only, and only for the purpose it was made for (i.e., completing and improving text and asking GPT questions). The plugin's authors are not responsible for what OpenAI do with this data. The plugin's authors do not collect any data from the plugin's users.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LeafLLM LeafLLM
ID feomoidgfifpofabcapiipjjjoigjeoa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leafllm/feomoidgfifpofabcapiipjjjoigjeoa
คำอธิบาย LLM-based tools for Overleaf
ขนาดไฟล์ 1.49 MB
จำนวนการติดตั้ง 87
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2023-12-07
วันที่เผยแพร่ 2023-08-02
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา bthink-bgu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bThink-BGU/LeafLLM
URL หน้าช่วยเหลือ https://github.com/bThink-BGU/LeafLLM/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/bThink-BGU/LeafLLM
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": "popup\/LeafLLM.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/jquery.js",
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ]
        }
    ],
    "description": "LLM-based tools for Overleaf",
    "icons": {
        "16": "popup\/LeafLLM_16.png",
        "48": "popup\/LeafLLM_48.png",
        "128": "popup\/LeafLLM_128.png"
    },
    "commands": {
        "Complete": {
            "suggested_key": {
                "default": "Alt+C"
            },
            "description": "Complete selected text"
        },
        "Improve": {
            "suggested_key": {
                "default": "Alt+I"
            },
            "description": "Improve selected text"
        },
        "Ask": {
            "suggested_key": {
                "default": "Alt+A"
            },
            "description": "Use the selected text to ask GPT. It adds to the beginning of the selected text: 'In Latex, '"
        }
    },
    "background": {
        "service_worker": "scripts\/service-worker.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "manifest_version": 3,
    "name": "LeafLLM",
    "homepage_url": "https:\/\/github.com\/achiyae\/LeafLLM",
    "version": "1.4.0"
}