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

تحميل ملف CRX للإضافة PHP Error Alert

قم بتنزيل ملفات الامتداد PHP Error Alert بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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
}