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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" } } } |