Shortleaf

Custom keyboard shortcuts for Overleaf.

Was ist Shortleaf?

Shortleaf ist eine Chrome-Erweiterung, die von Andre Alcantara entwickelt wurde, und ihr Hauptmerkmal ist "Custom keyboard shortcuts for Overleaf.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Shortleaf-Erweiterungs-CRX-Datei herunterladen

Laden Sie Shortleaf-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 extension adds keyboard shortcuts to the popular Overleaf online latex editor. Examples include:
- alt+a for \alpha
- alt+\ for \frac{selected text here}{}
- alt-` for ``selected text here''
These shortcuts are fully customizable.                    

Grundlegende Informationen zur Erweiterung

Name Shortleaf Shortleaf
ID hmkemgnhfglmggklpfodjgkabaicchjn
Offizielle URL https://chromewebstore.google.com/detail/shortleaf/hmkemgnhfglmggklpfodjgkabaicchjn
Beschreibung Custom keyboard shortcuts for Overleaf.
Dateigröße 21.72 KB
Installationsanzahl 426
Aktuelle Version 1.0.2
Letztes Update 2023-10-31
Veröffentlichungsdatum 2021-11-17
Bewertung 5.00/5 Insgesamt 11 Bewertungen
Entwickler Andre Alcantara
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Shortleaf",
    "description": "Custom keyboard shortcuts for Overleaf.",
    "version": "1.0.2",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 3,
    "background": {
        "service_worker": "service-worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "js": [
                "content-script.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.overleaf.com\/project\/*"
            ],
            "js": [
                "shortleaf.js"
            ],
            "world": "MAIN"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "shortleaf.js",
                "popup.js",
                "shortleaf_pages.js",
                "shortleaf_pages.css",
                "default_config.json",
                "*.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html"
    }
}