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 - это расширение Chrome, разработанное James Mortensen, и его основная функция - "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…".
Снимки экрана расширения
Скачать файл CRX расширения Global Variable Detector Extension
Скачайте файлы расширений 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 |
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." } } |