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
官方網址 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."
    }
}