Global Variable Detector Extension

This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…

O que é Global Variable Detector Extension?

Global Variable Detector Extension é uma extensão do Chrome desenvolvida por James Mortensen, e sua principal característica é "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Global Variable Detector Extension

Baixe arquivos de extensão Global Variable Detector Extension 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

                        This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. 
 Click the Browser Action button, the blue icon with the "Gl" on it, in order to collect a list of global variables on the current web page.  In the Console, each variable is listed, and an object is logged which contains the variables in an array.                    

Informações Básicas da Extensão

Nome Global Variable Detector Extension Global Variable Detector Extension
ID dhkefkbgdempfmmdphonngolemioddnm
URL Oficial https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm
Descrição This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
Tamanho do Arquivo 7.6 KB
Contagem de Instalações 88
Versão Atual 0.1
Última Atualização 2020-06-15
Data de Publicação 2020-06-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor James Mortensen
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Global Variable Detector Extension",
    "version": "0.1",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "web.js",
                "js\/GlobalDetector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "web.js"
    ],
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/favicon-16x16.png",
            "24": "images\/favicon-32x32.png",
            "32": "images\/favicon-32x32.png"
        },
        "default_title": "Global Variable Detector - Click to see globals in JS console."
    }
}