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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Relative Line Numbering for Overleaf एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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\/*" ] } ] } |