open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

Qu'est-ce que open-in-overleaf ?

open-in-overleaf est une extension Chrome développée par amitness, et sa fonction principale est "Access the LaTeX source code of arXiv papers on Overleaf".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension open-in-overleaf

Téléchargez les fichiers d'extension open-in-overleaf au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
URL Officiel https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Description Access the LaTeX source code of arXiv papers on Overleaf
Taille du Fichier 691 KB
Nombre d'Installations 1,115
Version Actuelle 0.1.1
Dernière Mise à Jour 2023-12-20
Date de Publication 2023-04-12
Évaluation 5.00/5 Total 1 Évaluations
Développeur amitness
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://amitness.com/privacy/index.html
Langues Prises en Charge 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
}