Confluence Pagetree Search

Add a feature to search page tree by its name.

Confluence Pagetree Search là gì?

Confluence Pagetree Search là một tiện ích mở rộng Chrome được phát triển bởi noga.highland, và tính năng chính của nó là "Add a feature to search page tree by its name.".

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

screenshot

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

Tải xuống các tệp mở rộng Confluence Pagetree Search 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 chrome extension add a feature to search page tree by its name. If the page tree macro is installed in your Confluence space's side bar, this extension hacks it.

With Confluence Pagetree Search, you can livesearch the pages by typing a part of the title name. This will solve your large pain when the space grew too large to find the page instantly.

This extension is confirmed to work on Confluence version 6.13.8. If there is any problem on the plugin, please report an GitHub issue from the web site link. However, because the author is outside Atlassian, I am unable to reproduce the problem and fix them using various Confluence versions. I appreciate that you fix the code and send the Pull Requests on GitHub.                    

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

Tên Confluence Pagetree Search Confluence Pagetree Search
ID impgjbnbnocheogednhacjjofkkkbpce
URL Chính Thức https://chromewebstore.google.com/detail/confluence-pagetree-searc/impgjbnbnocheogednhacjjofkkkbpce
Mô tả Add a feature to search page tree by its name.
Kích Thước Tệp 901 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2021-10-13
Ngày Phát Hành 2020-06-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển noga.highland
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nogahighland/confluence-pagetree-search
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Confluence Pagetree Search",
    "version": "2.0.3",
    "description": "Add a feature to search page tree by its name.",
    "author": "kissy0601",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "index.bundle.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "commands": {
        "_execute_page_action": {
            "description": "\u62e1\u5f35\u6a5f\u80fd\u3092\u6709\u52b9\u306b\u3057\u307e\u3059"
        }
    }
}