Confluence Pagetree Search

Add a feature to search page tree by its name.

Τι είναι το Confluence Pagetree Search;

Το Confluence Pagetree Search είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον noga.highland, και η κύρια λειτουργία του είναι "Add a feature to search page tree by its name.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Confluence Pagetree Search

Λήψη αρχείων επέκτασης 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"
        }
    }
}