PHPView
Validate and view PHP print_r outputs
PHPViewคืออะไร?
PHPView เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Validate and view PHP print_r outputs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PHPView
ดาวน์โหลดไฟล์ส่วนขยาย PHPView ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Pretty print any kind of PHP print_r output. Debug your arrays and objects easily, and collapse the branches that you don't need to check in order to navigate in a easier way over the structure.
I'm basically adapting this great extension for JSON: https://chrome.google.com/webstore/detail/jsonview/chklaanhfefbnpoihckbnefhakgolnmc
That fantastic work deserves 99% of the credit, but we, PHP developers, also needed this!
Repository: https://github.com/theypsilon/PHPView-for-Chrome
Please, contribute! ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | nlkobfbkblfhlcobdomlhmpbbhmcbkfd |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/phpview/nlkobfbkblfhlcobdomlhmpbbhmcbkfd |
| คำอธิบาย | Validate and view PHP print_r outputs |
| ขนาดไฟล์ | 85.75 KB |
| จำนวนการติดตั้ง | 20,000 |
| เวอร์ชันปัจจุบัน | 0.1.5 |
| อัปเดตครั้งล่าสุด | 2014-07-08 |
| วันที่เผยแพร่ | 2014-07-07 |
| คะแนน | 4.28/5 รวมทั้งหมด 39 คะแนน |
| ผู้พัฒนา | Unknown |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/theypsilon/PHPView-for-Chrome |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "PHPView",
"icons": {
"16": "jsonview16.png",
"48": "jsonview48.png",
"128": "jsonview128.png"
},
"version": "0.1.5",
"description": "Validate and view PHP print_r outputs",
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"web_accessible_resources": [
"jsonview.css",
"jsonview-core.css",
"content_error.css",
"options.png",
"close_icon.gif",
"error.gif"
],
"permissions": [
"clipboardWrite",
"http:\/\/*\/",
"contextMenus",
"https:\/\/*\/",
"ftp:\/\/*\/"
],
"manifest_version": 2
} | |