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開發的Chrome擴展程式,該擴展的主要功能是“Adds the ability to change the line numbering style in Overleaf's Legacy editor to relative.”。
擴展截圖
下載Relative Line Numbering for Overleaf擴展crx文件
下載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 |
| 官方網址 | 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\/*"
]
}
]
} | |