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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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" } } } |