Relative Line Numbering for Overleaf
Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.
Cos'è Relative Line Numbering for Overleaf?
Relative Line Numbering for Overleaf è un'estensione di Chrome sviluppata da Håkon, e la sua funzione principale è "Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Relative Line Numbering for Overleaf
Scarica i file di estensione Relative Line Numbering for Overleaf in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | cpndkecejnblehgenlnogffaeekmkphh |
| URL Ufficiale | https://chromewebstore.google.com/detail/relative-line-numbering-f/cpndkecejnblehgenlnogffaeekmkphh |
| Descrizione | Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative. |
| Dimensione del File | 509 KB |
| Conteggio Installazioni | 291 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2023-02-23 |
| Data di Pubblicazione | 2022-03-01 |
| Sviluppatore | Håkon |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/haakon8855/overleaf-relative-line-numbers |
| Lingue Supportate | 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\/*"
]
}
]
} | |