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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
            ]
        }
    ]
}