PHP Error Alert
Shows a notification alert if there's a PHP error.
Apa itu PHP Error Alert?
PHP Error Alert adalah ekstensi Chrome yang dikembangkan oleh https://interactivetools.com, dan fitur utamanya adalah "Shows a notification alert if there's a PHP error.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi PHP Error Alert
Unduh file ekstensi PHP Error Alert dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | PHP Error Alert |
ID | pkckpaaolokjkclbambhmcokaahignkc |
URL Resmi | https://chromewebstore.google.com/detail/php-error-alert/pkckpaaolokjkclbambhmcokaahignkc |
Deskripsi | Shows a notification alert if there's a PHP error. |
Ukuran File | 57.31 KB |
Jumlah Instalasi | 1,343 |
Versi Saat Ini | 1.5 |
Terakhir Diperbarui | 2016-02-26 |
Tanggal Publikasi | 2016-02-26 |
Penilaian | 3.91/5 Total 11 Penilaian |
Pengembang | https://interactivetools.com |
Tipe Pembayaran | free |
Situs Ekstensi | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
URL Halaman Bantuan | http://www.interactivetools.com/forum/forum-posts.php?Chrome-Plugin-PHP-Error-Alert-79101 |
Bahasa yang Didukung | 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 } |