LeafLLM

LLM-based tools for Overleaf

LeafLLM란 무엇입니까?

LeafLLM은(는) bthink-bgu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "LLM-based tools for Overleaf"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

LeafLLM 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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