Shortleaf

Custom keyboard shortcuts for Overleaf.

Shortleaf là gì?

Shortleaf là một tiện ích mở rộng Chrome được phát triển bởi Andre Alcantara, và tính năng chính của nó là "Custom keyboard shortcuts for Overleaf.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Shortleaf

Tải xuống các tệp mở rộng Shortleaf dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Shortleaf Shortleaf
ID hmkemgnhfglmggklpfodjgkabaicchjn
URL Chính Thức https://chromewebstore.google.com/detail/shortleaf/hmkemgnhfglmggklpfodjgkabaicchjn
Mô tả Custom keyboard shortcuts for Overleaf.
Kích Thước Tệp 21.72 KB
Số Lần Cài Đặt 426
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2023-10-31
Ngày Phát Hành 2021-11-17
Đánh Giá 5.00/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Andre Alcantara
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}