Confluence Inline Comments
This extension displays the first inline comment on a confluence page
什么是Confluence Inline Comments?
Confluence Inline Comments是由wd.cristian开发的Chrome扩展程序,该扩展的主要功能是“This extension displays the first inline comment on a confluence page”。
扩展截图
下载Confluence Inline Comments扩展crx文件
下载Confluence Inline Comments扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension displays the first inline comment on a confluence page.
Added a small bug fix to avoid double scroll.
- Version 4 adapts the code to the new editor's version. 扩展基本信息
| 名称 | |
| ID | hpfpfnjedfphnnfdfklkbejachlfoeog |
| 官方URL | https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog |
| 简介 | This extension displays the first inline comment on a confluence page |
| 文件大小 | 14.21 KB |
| 安装次数 | 55 |
| 当前版本 | 0.4 |
| 更新时间 | 2020-02-20 |
| 上架时间 | 2020-02-20 |
| 评分 | 5.00/5 共2次评分 |
| 开发者 | wd.cristian |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Confluence Inline Comments",
"version": "0.4",
"manifest_version": 2,
"description": "This extension displays the first inline comment on a confluence page",
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.atlassian.net\/*"
],
"js": [
"fixDoubleBar.js"
],
"run_at": "document_end"
}
],
"permissions": [
"activeTab"
]
} | |