Global Namespace Pollution

Detects and graphs the global namespace pollution

Cos'è Global Namespace Pollution?

Global Namespace Pollution è un'estensione di Chrome sviluppata da Chieffancypants, e la sua funzione principale è "Detects and graphs the global namespace pollution".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Global Namespace Pollution

Scarica i file di estensione Global Namespace Pollution in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
URL Ufficiale https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Descrizione Detects and graphs the global namespace pollution
Dimensione del File 46.16 KB
Conteggio Installazioni 13
Versione Corrente 0.4
Ultimo Aggiornamento 2013-04-26
Data di Pubblicazione 2013-04-26
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore Chieffancypants
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/chieffancypants/NamespacePollution
URL della Pagina di Aiuto https://github.com/chieffancypants/NamespacePollution/issues
Lingue Supportate 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"
}