PHPView
Validate and view PHP print_r outputs
PHPView क्या है?
PHPView Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Validate and view PHP print_r outputs"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PHPView एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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!
एक्सटेंशन की मूल जानकारी
नाम | PHPView |
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 } |