open-in-overleaf

Access the LaTeX source code of arXiv papers on Overleaf

What is open-in-overleaf?

open-in-overleaf is a Chrome extension developed by amitness, and its main feature is "Access the LaTeX source code of arXiv papers on Overleaf".

Extension Screenshots

screenshot

Download open-in-overleaf Extension CRX File

Download open-in-overleaf extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name open-in-overleaf open-in-overleaf
ID oikhlgfcmfbbdjbeeaplalpfdgijbdji
Official URL https://chromewebstore.google.com/detail/open-in-overleaf/oikhlgfcmfbbdjbeeaplalpfdgijbdji
Description Access the LaTeX source code of arXiv papers on Overleaf
File Size 691 KB
Installation Count 1,115
Current Version 0.1.1
Last Updated 2023-12-20
Publish Date 2023-04-12
Rating 5.00/5 Total 1 Ratings
Developer amitness
Email [email protected]
Payment Type free
Privacy Policy Page URL https://amitness.com/privacy/index.html
Supported Languages 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
}