Rafflesia for Overleaf

Handy tools for Overleaf

Was ist Rafflesia for Overleaf?

Rafflesia for Overleaf ist eine Chrome-Erweiterung, die von felker.tech entwickelt wurde, und ihr Hauptmerkmal ist "Handy tools for Overleaf".

Erweiterungsscreenshots

screenshot

Rafflesia for Overleaf-Erweiterungs-CRX-Datei herunterladen

Laden Sie Rafflesia for 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

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Rafflesia for Overleaf Rafflesia for Overleaf
ID fdcjfccjfkjbhpmaiomkbclokacahenl
Offizielle URL https://chromewebstore.google.com/detail/rafflesia-for-overleaf/fdcjfccjfkjbhpmaiomkbclokacahenl
Beschreibung Handy tools for Overleaf
Dateigröße 161 KB
Installationsanzahl 61
Aktuelle Version 1.0.1
Letztes Update 2022-07-10
Veröffentlichungsdatum 2022-06-27
Entwickler felker.tech
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Fleker/rafflesia
Hilfeseite URL https://github.com/Fleker/rafflesia/issues
Unterstützte Sprachen 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": [
                ""
            ]
        }
    ]
}