Shortleaf

Custom keyboard shortcuts for Overleaf.

Что такое Shortleaf?

Shortleaf - это расширение Chrome, разработанное Andre Alcantara, и его основная функция - "Custom keyboard shortcuts for Overleaf.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Shortleaf

Скачайте файлы расширений Shortleaf в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Shortleaf Shortleaf
ID hmkemgnhfglmggklpfodjgkabaicchjn
Официальный URL https://chromewebstore.google.com/detail/shortleaf/hmkemgnhfglmggklpfodjgkabaicchjn
Описание Custom keyboard shortcuts for Overleaf.
Размер файла 21.72 KB
Количество установок 426
Текущая Версия 1.0.2
Последнее Обновление 2023-10-31
Дата публикации 2021-11-17
Рейтинг 5.00/5 Всего 11 оценок
Разработчик Andre Alcantara
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}