open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

Co to jest open-in-overleaf?

open-in-overleaf to rozszerzenie Chrome opracowane przez amitness, a jego główną funkcją jest „Access the LaTeX source code of arXiv papers on Overleaf”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia open-in-overleaf

Pobierz pliki rozszerzeń open-in-overleaf w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
Oficjalny URL https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Opis Access the LaTeX source code of arXiv papers on Overleaf
Rozmiar pliku 691 KB
Liczba instalacji 1,115
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2023-12-20
Data Publikacji 2023-04-12
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper amitness
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://amitness.com/privacy/index.html
Obsługiwane Języki 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
}