Confluence Pagetree Search

Add a feature to search page tree by its name.

Confluence Pagetree Search란 무엇입니까?

Confluence Pagetree Search은(는) noga.highland에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a feature to search page tree by its name."입니다.

확장 프로그램 스크린샷

screenshot

Confluence Pagetree Search 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Confluence Pagetree Search Confluence Pagetree Search
ID impgjbnbnocheogednhacjjofkkkbpce
공식 URL https://chromewebstore.google.com/detail/confluence-pagetree-searc/impgjbnbnocheogednhacjjofkkkbpce
설명 Add a feature to search page tree by its name.
파일 크기 901 KB
설치 횟수 73
현재 버전 2.0.3
최근 업데이트 2021-10-13
출시 날짜 2020-06-23
평점 5.00/5 총 1 개의 평점
개발자 noga.highland
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nogahighland/confluence-pagetree-search
지원되는 언어 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"
        }
    }
}