Overleaf Copilot

Copilot for Overleaf

Overleaf Copilot क्या है?

Overleaf Copilot dusongpei द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Copilot for Overleaf"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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