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 |
| 官方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\/*"
]
}
]
} | |