Overleaf Copilot

Copilot for Overleaf

Overleaf Copilot란 무엇입니까?

Overleaf Copilot은(는) dusongpei에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Copilot for Overleaf"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Enhance your writing experience on Overleaf with our Copilot extension. Dive into an array of features crafted to elevate your content:

- Auto-Completion:
As you pen down your thoughts, the Copilot anticipates and suggests the continuation for your sentences or paragraphs, taking cues from the content already present on the page.
Simply type a whitespace at the end of your sentence or press enter for a new line to activate this feature.

- Text Enhancement with GPT:
Refine your selected text with the power of GPT, ensuring your content is crisp and engaging.
Discover Related Content:

- Delve into a trove of content from arXiv with just a selection of your text.
Indexed abstracts from papers published post-April 2007 are at your fingertips.
This feature utilizes semantic search, powered by the BAAI/bge-small-en-v1.5 embedding, to bring relevant content to you.
Configurability & Privacy:

Tailor the extension to your preference:
- Customize prompts used in "Auto-Completion" and "Text Enhancement", or simply opt for our default suggestions.
- Enable or disable each feature as per your requirement.
- To jumpstart your experience, simply integrate your personal OpenAI API key.

Your privacy is paramount:
- Your API key remains confined to your browser and is never shared.
- All requests are dispatched directly to OpenAI. For the tech-savvy, monitor these requests using the DevTool.

Written by GPT
------------------------------------------------------------------------------------------
Source code is available at https://github.com/dsp05/overleaf-copilot                    

확장 프로그램 기본 정보

이름 Overleaf Copilot Overleaf Copilot
ID pcmffklbilmgckfkbncpoffmicdpfkmm
공식 URL https://chromewebstore.google.com/detail/overleaf-copilot/pcmffklbilmgckfkbncpoffmicdpfkmm
설명 Copilot for Overleaf
파일 크기 529 KB
설치 횟수 494
현재 버전 0.1.8
최근 업데이트 2024-02-27
출시 날짜 2023-10-06
평점 3.00/5 총 2 개의 평점
개발자 dusongpei
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dsp05/overleaf-copilot
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Overleaf Copilot",
    "version": "0.1.8",
    "description": "Copilot for Overleaf",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/icon_128.png",
                "sidePanel.html",
                "search.html"
            ],
            "matches": [
                "https:\/\/www.overleaf.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Overleaf Copilot",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/www.overleaf.com\/project\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentMainScript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/www.overleaf.com\/project\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentIsoScript.js"
            ],
            "css": [
                "contentIsoScript.css"
            ]
        }
    ]
}