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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Relative Line Numbering for Overleaf
Λήψη αρχείων επέκτασης 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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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\/*" ] } ] } |