PHP Error Alert
Shows a notification alert if there's a PHP error.
PHP Error Alert क्या है?
PHP Error Alert https://interactivetools.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows a notification alert if there's a PHP error."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PHP Error Alert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Developers, never miss a PHP error again! This chrome plugin shows a popup any time a page contains a PHP error, even hard to spot PHP error hidden in HTML tags that aren't visible without viewing source. Post any feedback or suggestions in our forum here: http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101
एक्सटेंशन की मूल जानकारी
नाम | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
आधिकारिक URL | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
विवरण | Shows a notification alert if there's a PHP error. |
फ़ाइल का आकार | 57.31 KB |
स्थापना संख्या | 1,343 |
वर्तमान संस्करण | 1.5 |
अंतिम अपडेट | 2016-02-26 |
प्रकाशन तिथि | 2016-02-26 |
रेटिंग | 3.91/5 कुल 11 रेटिंग्स |
डेवलपर | https://interactivetools.com |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
सहायता पृष्ठ URL | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "PHP Error Alert", "version": "1.5", "description": "Shows a notification alert if there's a PHP error.", "options_page": "options.html", "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "warning-19.png", "default_popup": "pop-up-menu.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-2.2.1.min.js", "js\/jquery.noty.js", "js\/topRight.js", "js\/default.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "warning-48.png", "128": "warning-128.png" }, "permissions": [ "storage" ], "manifest_version": 2 } |