Confluence Pagetree Search

Add a feature to search page tree by its name.

Wat is Confluence Pagetree Search?

Confluence Pagetree Search is een Chrome-extensie ontwikkeld door noga.highland, en de belangrijkste functie is "Add a feature to search page tree by its name.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Confluence Pagetree Search

Download Confluence Pagetree Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Confluence Pagetree Search Confluence Pagetree Search
ID impgjbnbnocheogednhacjjofkkkbpce
Officiële URL https://chromewebstore.google.com/detail/confluence-pagetree-searc/impgjbnbnocheogednhacjjofkkkbpce
Beschrijving Add a feature to search page tree by its name.
Bestandsgrootte 901 KB
Aantal Installaties 73
Huidige Versie 2.0.3
Laatst Bijgewerkt 2021-10-13
Publicatiedatum 2020-06-23
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar noga.highland
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/nogahighland/confluence-pagetree-search
Ondersteunde Talen 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"
        }
    }
}