Global Variable Detector Extension

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

什么是Global Variable Detector Extension?

Global Variable Detector Extension是由James Mortensen开发的Chrome扩展程序,该扩展的主要功能是“This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…”。

扩展截图

screenshot

下载Global Variable Detector Extension扩展crx文件

下载Global Variable Detector Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Global Variable Detector Extension Global Variable Detector Extension
ID dhkefkbgdempfmmdphonngolemioddnm
官方URL https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm
简介 This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
文件大小 7.6 KB
安装次数 88
当前版本 0.1
更新时间 2020-06-15
上架时间 2020-06-14
评分 5.00/5 共1次评分
开发者 James Mortensen
电子邮箱 [email protected]
付费类型 free
支持的语言 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."
    }
}