PHP Search
Adds support to the omnibox to search the PHP reference docs.
PHP Searchคืออะไร?
PHP Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xeno.be และคุณลักษณะหลักของมันคือ "Adds support to the omnibox to search the PHP reference docs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PHP Search
ดาวน์โหลดไฟล์ส่วนขยาย PHP Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Use this omnibox plugin to directly search the online PHP help. Simply type 'php ' to start your search, then the name of whatever class you are looking for help with, to take you straight to the relevant page in the online documentation. This extension will try and find the mirror site nearest to you. You can change this site in the extensions options page: either through Chrome's extensions page or by typing 'php options' in the omnibox. Source from: https://github.com/mpress/developer-omniboxes-for-chrome
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mfpdmlochkjkogiihgjlnlagdigapnfn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/php-search/mfpdmlochkjkogiihgjlnlagdigapnfn |
คำอธิบาย | Adds support to the omnibox to search the PHP reference docs. |
ขนาดไฟล์ | 112 KB |
จำนวนการติดตั้ง | 286 |
เวอร์ชันปัจจุบัน | 3.0.1 |
อัปเดตครั้งล่าสุด | 2015-10-09 |
วันที่เผยแพร่ | 2015-10-09 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | xeno.be |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "PHP Search", "manifest_version": 2, "description": "Adds support to the omnibox to search the PHP reference docs.", "background": { "scripts": [ "String.js", "index.js", "getMirror.js", "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "32": "icons\/icon32.png", "16": "icons\/icon16.png" }, "omnibox": { "keyword": "php" }, "permissions": [ "tabs", "http:\/\/www.php.net\/" ], "version": "3.0.1" } |