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 هو إضافة Chrome تم تطويرها بواسطة Håkon، والميزة الرئيسية لها هي "Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Relative Line Numbering for Overleaf

قم بتنزيل ملفات الامتداد Relative Line Numbering for Overleaf بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
            ]
        }
    ]
}