open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

Cos'è open-in-overleaf?

open-in-overleaf è un'estensione di Chrome sviluppata da amitness, e la sua funzione principale è "Access the LaTeX source code of arXiv papers on Overleaf".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione open-in-overleaf

Scarica i file di estensione open-in-overleaf in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
URL Ufficiale https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Descrizione Access the LaTeX source code of arXiv papers on Overleaf
Dimensione del File 691 KB
Conteggio Installazioni 1,115
Versione Corrente 0.1.1
Ultimo Aggiornamento 2023-12-20
Data di Pubblicazione 2023-04-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore amitness
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://amitness.com/privacy/index.html
Lingue Supportate 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
}