Global Namespace Pollution

Detects and graphs the global namespace pollution

O que é Global Namespace Pollution?

Global Namespace Pollution é uma extensão do Chrome desenvolvida por Chieffancypants, e sua principal característica é "Detects and graphs the global namespace pollution".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Global Namespace Pollution

Baixe arquivos de extensão Global Namespace Pollution no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
URL Oficial https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Descrição Detects and graphs the global namespace pollution
Tamanho do Arquivo 46.16 KB
Contagem de Instalações 13
Versão Atual 0.4
Última Atualização 2013-04-26
Data de Publicação 2013-04-26
Classificação 3.33/5 Total de 3 Avaliações
Desenvolvedor Chieffancypants
Tipo de Pagamento free
Site da Extensão https://github.com/chieffancypants/NamespacePollution
URL da Página de Ajuda https://github.com/chieffancypants/NamespacePollution/issues
Idiomas Suportados 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"
}