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”。

擴展截圖

screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
官方網址 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"
    ]
}