PHPView
Validate and view PHP print_r outputs
PHPView là gì?
PHPView là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Validate and view PHP print_r outputs".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PHPView
Tải xuống các tệp mở rộng PHPView dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PHPView |
ID | nlkobfbkblfhlcobdomlhmpbbhmcbkfd |
URL Chính Thức | https://chromewebstore.google.com/detail/phpview/nlkobfbkblfhlcobdomlhmpbbhmcbkfd |
Mô tả | Validate and view PHP print_r outputs |
Kích Thước Tệp | 85.75 KB |
Số Lần Cài Đặt | 20,000 |
Phiên Bản Hiện Tại | 0.1.5 |
Cập Nhật Lần Cuối | 2014-07-08 |
Ngày Phát Hành | 2014-07-07 |
Đánh Giá | 4.28/5 Tổng số 39 Đánh Giá |
Nhà Phát Triển | Unknown |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/theypsilon/PHPView-for-Chrome |
Ngôn Ngữ Được Hỗ Trợ | 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 } |