Javadoc Search Frame
Javadoc incremental search for packages and classes.
Javadoc Search Frameคืออะไร?
Javadoc Search Frame เป็นส่วนขยายของ Chrome ที่พัฒนาโดย StevenGBrown และคุณลักษณะหลักของมันคือ "Javadoc incremental search for packages and classes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Javadoc Search Frame
ดาวน์โหลดไฟล์ส่วนขยาย Javadoc Search Frame ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When viewing Javadocs, this extension replaces the package and class frames with a single search frame that allows searching incrementally through all packages and classes at once. Feature summary: https://github.com/StevenGBrown/javadoc-search-frame/wiki/Features To have this extension apply to file:// URLs, configure it from the chrome://extensions/ page. Also available for Mozilla Firefox: https://greasyfork.org/en/scripts/3758-javadoc-search-frame
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Javadoc Search Frame |
ID | mfgkihmpcjjnijmkchojlbccbmhcdfcd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/javadoc-search-frame/mfgkihmpcjjnijmkchojlbccbmhcdfcd |
คำอธิบาย | Javadoc incremental search for packages and classes. |
ขนาดไฟล์ | 39.18 KB |
จำนวนการติดตั้ง | 2,242 |
เวอร์ชันปัจจุบัน | 1.7.0 |
อัปเดตครั้งล่าสุด | 2022-11-11 |
วันที่เผยแพร่ | 2018-01-13 |
คะแนน | 4.80/5 รวมทั้งหมด 49 คะแนน |
ผู้พัฒนา | StevenGBrown |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/StevenGBrown/javadoc-search-frame |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.7.0", "manifest_version": 3, "description": "__MSG_extDescription__", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "service_worker": "event-page.js" }, "commands": { "focus-on-search-field": { "suggested_key": { "default": "Alt+Shift+S" }, "description": "Focus on the search field" }, "clear-search-field": { "suggested_key": { "default": "Alt+Shift+A" }, "description": "Clear the contents of the search field" } }, "content_scripts": [ { "matches": [ "http:\/\/*\/allclasses-frame.html", "http:\/\/*\/*\/allclasses-frame.html", "https:\/\/*\/allclasses-frame.html", "https:\/\/*\/*\/allclasses-frame.html", "file:\/\/*\/allclasses-frame.html", "file:\/\/*\/*\/allclasses-frame.html", "http:\/\/*\/package-frame.html", "http:\/\/*\/*\/package-frame.html", "https:\/\/*\/package-frame.html", "https:\/\/*\/*\/package-frame.html", "file:\/\/*\/package-frame.html", "file:\/\/*\/*\/package-frame.html" ], "js": [ "lib\/Messages.js", "lib\/Storage.js", "lib\/Option.js", "lib\/Frames.js", "lib\/OptionsPage.js", "lib\/HttpRequest.js", "lib\/common.js", "allclasses-frame.js" ], "all_frames": true } ], "minimum_chrome_version": "88", "options_ui": { "page": "options.html", "open_in_tab": false }, "options_page": "options.html", "offline_enabled": true, "permissions": [ "scripting", "storage", "webNavigation" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ] } |