PHP Error Alert

Shows a notification alert if there's a PHP error.

PHP Error Alertคืออะไร?

PHP Error Alert เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://interactivetools.com และคุณลักษณะหลักของมันคือ "Shows a notification alert if there's a PHP error."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PHP Error Alert

ดาวน์โหลดไฟล์ส่วนขยาย PHP Error Alert ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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
}