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 |
| Eメール | [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"
]
} | |