Confluence Pagetree Search
Add a feature to search page tree by its name.
O que é Confluence Pagetree Search?
Confluence Pagetree Search é uma extensão do Chrome desenvolvida por noga.highland, e sua principal característica é "Add a feature to search page tree by its name.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Confluence Pagetree Search
Baixe arquivos de extensão Confluence Pagetree Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Confluence Pagetree Search |
ID | impgjbnbnocheogednhacjjofkkkbpce |
URL Oficial | https://chromewebstore.google.com/detail/confluence-pagetree-searc/impgjbnbnocheogednhacjjofkkkbpce |
Descrição | Add a feature to search page tree by its name. |
Tamanho do Arquivo | 901 KB |
Contagem de Instalações | 73 |
Versão Atual | 2.0.3 |
Última Atualização | 2021-10-13 |
Data de Publicação | 2020-06-23 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | noga.highland |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/nogahighland/confluence-pagetree-search |
Idiomas Suportados | 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" } } } |