Relative Line Numbering for Overleaf

Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.

Relative Line Numbering for Overleafとは何ですか?

Relative Line Numbering for OverleafはHåkonによって開発されたChromeの拡張機能で、その主な機能は「Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.」です。

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

screenshot
screenshot
screenshot

Relative Line Numbering for Overleaf拡張機能のCRXファイルをダウンロード

Relative Line Numbering for Overleaf拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        WARNING: This extension no longer works as of February 2023

Overleaf has now changed its editor to CodeMirror 6, which does not support the relative line numbering style.

Please make contact or contribute on GitHub if you have any insight into a fix for the new editor:
https://github.com/haakon8855/overleaf-relative-line-numbers                    

拡張機能の基本情報

名前 Relative Line Numbering for Overleaf Relative Line Numbering for Overleaf
ID cpndkecejnblehgenlnogffaeekmkphh
公式URL https://chromewebstore.google.com/detail/relative-line-numbering-f/cpndkecejnblehgenlnogffaeekmkphh
説明 Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.
ファイルサイズ 509 KB
インストール数 291
現在のバージョン 1.1
最終更新日 2023-02-23
公開日 2022-03-01
開発者 Håkon
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/haakon8855/overleaf-relative-line-numbers
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Relative Line Numbering for Overleaf",
    "description": "Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.",
    "version": "1.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon16.png",
            "32": "\/images\/icon32.png",
            "48": "\/images\/icon48.png",
            "128": "\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.overleaf.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "enable.js",
                "disable.js"
            ],
            "matches": [
                "*:\/\/*.overleaf.com\/*"
            ]
        }
    ]
}