open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

Was ist open-in-overleaf?

open-in-overleaf ist eine Chrome-Erweiterung, die von amitness entwickelt wurde, und ihr Hauptmerkmal ist "Access the LaTeX source code of arXiv papers on Overleaf".

Erweiterungsscreenshots

screenshot

open-in-overleaf-Erweiterungs-CRX-Datei herunterladen

Laden Sie open-in-overleaf-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
Offizielle URL https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Beschreibung Access the LaTeX source code of arXiv papers on Overleaf
Dateigröße 691 KB
Installationsanzahl 1,115
Aktuelle Version 0.1.1
Letztes Update 2023-12-20
Veröffentlichungsdatum 2023-04-12
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler amitness
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://amitness.com/privacy/index.html
Unterstützte Sprachen 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
}