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 là gì?

Relative Line Numbering for Overleaf là một tiện ích mở rộng Chrome được phát triển bởi Håkon, và tính năng chính của nó là "Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.".

Ả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 Relative Line Numbering for Overleaf

Tải xuống các tệp mở rộng Relative Line Numbering for Overleaf 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

                        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                    

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

Tên Relative Line Numbering for Overleaf Relative Line Numbering for Overleaf
ID cpndkecejnblehgenlnogffaeekmkphh
URL Chính Thức https://chromewebstore.google.com/detail/relative-line-numbering-f/cpndkecejnblehgenlnogffaeekmkphh
Mô tả Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.
Kích Thước Tệp 509 KB
Số Lần Cài Đặt 291
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-02-23
Ngày Phát Hành 2022-03-01
Nhà Phát Triển Håkon
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/haakon8855/overleaf-relative-line-numbers
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}