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文件

下载Confluence Pagetree Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
        }
    }
}