Rafflesia for Overleaf

Handy tools for Overleaf

Cos'è Rafflesia for Overleaf?

Rafflesia for Overleaf è un'estensione di Chrome sviluppata da felker.tech, e la sua funzione principale è "Handy tools for Overleaf".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Rafflesia for Overleaf

Scarica i file di estensione Rafflesia for Overleaf in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This adds a bottom panel to Overleaf documents which provides an ever-growing list of tools in order to maximize your productivity while writing papers.

When this is installed, a small toolbar will appear at the bottom of an Overleaf document. When you open the toolbar, you'll find several tools that can run locally and interact with your document.

Some tools include:
- Citations: You are able to add a link and automatically generate the appropriate BibTeX content and insert it into your document
- Comments: You can quickly find TODOs and FIXMEs scattered throughout the document
- Math Catalog: Helpful reference material for using various math formulas and processes in your document
- Timer: Set and manage timers to help you focus in brief sprints
- Word Cloud: See a count of characters, words, paragraphs and most frequent words

Tools can be updated or added over the course of the product lifecycle. I welcome ideas and feedback on what you want to see next to boost your productivity.                    

Informazioni di Base sull'Estensione

Nome Rafflesia for Overleaf Rafflesia for Overleaf
ID fdcjfccjfkjbhpmaiomkbclokacahenl
URL Ufficiale https://chromewebstore.google.com/detail/rafflesia-for-overleaf/fdcjfccjfkjbhpmaiomkbclokacahenl
Descrizione Handy tools for Overleaf
Dimensione del File 161 KB
Conteggio Installazioni 61
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-07-10
Data di Pubblicazione 2022-06-27
Sviluppatore felker.tech
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Fleker/rafflesia
URL della Pagina di Aiuto https://github.com/Fleker/rafflesia/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rafflesia for Overleaf",
    "description": "Handy tools for Overleaf",
    "version": "1.0.1",
    "manifest_version": 3,
    "permissions": [],
    "host_permissions": [
        "https:\/\/*.overleaf.com\/project\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "webpage-script.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}