open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

Vad är open-in-overleaf?

open-in-overleaf är en Chrome-tillägg utvecklad av amitness, och dess huvudfunktion är "Access the LaTeX source code of arXiv papers on Overleaf".

Tilläggsskärmbilder

screenshot

Ladda ner open-in-overleaf-förlängningens CRX-fil

Ladda ner open-in-overleaf-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Our browser extension adds a "Open in Overleaf" button to the research papers on arxiv.org. 

This allows you to access the LaTex source code of the research paper and edit them directly on Overleaf.

How it works:
- You click the "Open in Overleaf" button on the page
- The latex tar file from arxiv.org is sent to an API to convert it into a zip file
- The zip file is sent to overleaf and we redirect the user to the overleaf edit page                    

Grundläggande Information om Tillägg

Namn open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
Officiell webbadress https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Beskrivning Access the LaTeX source code of arXiv papers on Overleaf
Filstorlek 691 KB
Antal Installationer 1,115
Aktuell Version 0.1.1
Senast Uppdaterad 2023-12-20
Publiceringsdatum 2023-04-12
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare amitness
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://amitness.com/privacy/index.html
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "open-in-overleaf",
    "version": "0.1.1",
    "description": "Access the LaTeX source code of arXiv papers on Overleaf ",
    "author": "Amit Chaudhary ",
    "homepage_url": "https:\/\/github.com\/amitness\/open-in-overleaf",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/arxiv.org\/abs\/*",
                "http:\/\/arxiv.org\/abs\/*"
            ],
            "js": [
                "scripts\/inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "144": "images\/icon.png"
    },
    "offline_enabled": true
}