Shortleaf

Custom keyboard shortcuts for Overleaf.

Shortleafとは何ですか?

ShortleafはAndre Alcantaraによって開発されたChromeの拡張機能で、その主な機能は「Custom keyboard shortcuts for Overleaf.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Shortleaf拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}