Global Namespace Pollution

Detects and graphs the global namespace pollution

Wat is Global Namespace Pollution?

Global Namespace Pollution is een Chrome-extensie ontwikkeld door Chieffancypants, en de belangrijkste functie is "Detects and graphs the global namespace pollution".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Global Namespace Pollution

Download Global Namespace Pollution-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
Officiële URL https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Beschrijving Detects and graphs the global namespace pollution
Bestandsgrootte 46.16 KB
Aantal Installaties 13
Huidige Versie 0.4
Laatst Bijgewerkt 2013-04-26
Publicatiedatum 2013-04-26
Beoordeling 3.33/5 Totaal 3 Beoordelingen
Ontwikkelaar Chieffancypants
Betalingswijze free
Extensiewebsite https://github.com/chieffancypants/NamespacePollution
Help Pagina-URL https://github.com/chieffancypants/NamespacePollution/issues
Ondersteunde Talen 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"
}