Global Namespace Pollution

Detects and graphs the global namespace pollution

ما هو Global Namespace Pollution؟

Global Namespace Pollution هو إضافة Chrome تم تطويرها بواسطة Chieffancypants، والميزة الرئيسية لها هي "Detects and graphs the global namespace pollution".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Global Namespace Pollution

قم بتنزيل ملفات الامتداد Global Namespace Pollution بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        View the total namespace pollution at a glance! This can be useful when assessing your own sites and apps, and for educating your developers on the potential harm of a heavily polluted namespace. 

I have found it particularly useful when reverse engineering other sites as it allows you to quickly discover and browse the objects they use.                    

معلومات أساسية عن التمديد

الاسم Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
عنوان URL الرسمي https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
الوصف Detects and graphs the global namespace pollution
حجم الملف 46.16 KB
عدد التثبيتات 13
النسخة الحالية 0.4
آخر تحديث 2013-04-26
تاريخ النشر 2013-04-26
تقييم 3.33/5 مجموع تقييمات 3
المطور Chieffancypants
نوع الدفع free
موقع الإضافة https://github.com/chieffancypants/NamespacePollution
عنوان صفحة المساعدة https://github.com/chieffancypants/NamespacePollution/issues
اللغات المدعومة en
manifest.json
{
    "page_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "src\/popup.html",
        "default_title": "View Namespace Pollution"
    },
    "web_accessible_resources": [
        "src\/detector.js"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Detects and graphs the global namespace pollution",
    "background": {
        "page": "src\/background.html"
    },
    "default_locale": "en",
    "name": "Global Namespace Pollution",
    "permissions": [
        "chrome:\/\/favicon\/",
        "idle",
        "notifications",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.4"
}