Confluence Inline Comments

This extension displays the first inline comment on a confluence page

Confluence Inline Comments là gì?

Confluence Inline Comments là một tiện ích mở rộng Chrome được phát triển bởi wd.cristian, và tính năng chính của nó là "This extension displays the first inline comment on a confluence page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Confluence Inline Comments

Tải xuống các tệp mở rộng Confluence Inline Comments dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Confluence Inline Comments Confluence Inline Comments
ID hpfpfnjedfphnnfdfklkbejachlfoeog
URL Chính Thức https://chromewebstore.google.com/detail/confluence-inline-comment/hpfpfnjedfphnnfdfklkbejachlfoeog
Mô tả This extension displays the first inline comment on a confluence page
Kích Thước Tệp 14.21 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2020-02-20
Ngày Phát Hành 2020-02-20
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển wd.cristian
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}