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
Eメール [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."
    }
}