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 là gì?

Global Variable Detector Extension là một tiện ích mở rộng Chrome được phát triển bởi James Mortensen, và tính năng chính của nó là "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Global Variable Detector Extension

Tải xuống các tệp mở rộng Global Variable Detector Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Global Variable Detector Extension Global Variable Detector Extension
ID dhkefkbgdempfmmdphonngolemioddnm
URL Chính Thức https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm
Mô tả This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
Kích Thước Tệp 7.6 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-06-15
Ngày Phát Hành 2020-06-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển James Mortensen
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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."
    }
}