Java API Search (JDK 9-13)
Search the Java API directly within the Chrome Omnibox.
ما هو Java API Search (JDK 9-13)؟
Java API Search (JDK 9-13) هو إضافة Chrome تم تطويرها بواسطة Andrew Watson، والميزة الرئيسية لها هي "Search the Java API directly within the Chrome Omnibox.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Java API Search (JDK 9-13)
قم بتنزيل ملفات الامتداد Java API Search (JDK 9-13) بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension allows you to search the Java API directly from the Chrome Omnibox. Simply type "javadoc", then a space or a tab and a search term of interest (e.g. "ArrayList", "Map.Entry") and you will be taken to the most relevant page within Oracle's public Javadocs. You can specify the JDK version (9 through 13, inclusive) by putting it before the search term (e.g. "javadoc 12 HashMap"). This is very much a work in progress, so please be patient and report any and all bugs / issues on the extension's GitHub page at github.com/awwsmm/java-api-search.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | nlgnliljjenkennnfnllgcolafcipoab |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/java-api-search-jdk-9-13/nlgnliljjenkennnfnllgcolafcipoab |
الوصف | Search the Java API directly within the Chrome Omnibox. |
حجم الملف | 5.18 KB |
عدد التثبيتات | 892 |
النسخة الحالية | 0.0.1.2 |
آخر تحديث | 2019-10-06 |
تاريخ النشر | 2019-10-06 |
تقييم | 4.75/5 مجموع تقييمات 4 |
المطور | Andrew Watson |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/awwsmm/java-api-search |
عنوان صفحة المساعدة | https://github.com/awwsmm/java-api-search |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Java API Search (JDK 9-13)", "description": "Search the Java API directly within the Chrome Omnibox.", "version": "0.0.1.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "https:\/\/docs.oracle.com\/javase\/*\/docs\/api\/*", "https:\/\/docs.oracle.com\/en\/java\/javase\/*\/docs\/api\/*" ], "omnibox": { "keyword": "javadoc" }, "manifest_version": 2 } |