Global Namespace Pollution

Detects and graphs the global namespace pollution

What is Global Namespace Pollution?

Global Namespace Pollution is a Chrome extension developed by Chieffancypants, and its main feature is "Detects and graphs the global namespace pollution".

Extension Screenshots

screenshot

Download Global Namespace Pollution Extension CRX File

Download Global Namespace Pollution extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
Official URL https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Description Detects and graphs the global namespace pollution
File Size 46.16 KB
Installation Count 13
Current Version 0.4
Last Updated 2013-04-26
Publish Date 2013-04-26
Rating 3.33/5 Total 3 Ratings
Developer Chieffancypants
Payment Type free
Extension Website https://github.com/chieffancypants/NamespacePollution
Help Page URL https://github.com/chieffancypants/NamespacePollution/issues
Supported Languages 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"
}