open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

O que é open-in-overleaf?

open-in-overleaf é uma extensão do Chrome desenvolvida por amitness, e sua principal característica é "Access the LaTeX source code of arXiv papers on Overleaf".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão open-in-overleaf

Baixe arquivos de extensão open-in-overleaf no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
URL Oficial https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Descrição Access the LaTeX source code of arXiv papers on Overleaf
Tamanho do Arquivo 691 KB
Contagem de Instalações 1,115
Versão Atual 0.1.1
Última Atualização 2023-12-20
Data de Publicação 2023-04-12
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor amitness
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://amitness.com/privacy/index.html
Idiomas Suportados 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
}