Global Variable Detector Extension
This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
Co to jest Global Variable Detector Extension?
Global Variable Detector Extension to rozszerzenie Chrome opracowane przez James Mortensen, a jego główną funkcją jest „This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Global Variable Detector Extension
Pobierz pliki rozszerzeń Global Variable Detector Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Global Variable Detector Extension |
ID | dhkefkbgdempfmmdphonngolemioddnm |
Oficjalny URL | https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm |
Opis | This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser… |
Rozmiar pliku | 7.6 KB |
Liczba instalacji | 88 |
Aktualna Wersja | 0.1 |
Ostatnia Aktualizacja | 2020-06-15 |
Data Publikacji | 2020-06-14 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | James Mortensen |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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." } } |