Global Variable Detector Extension
This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
Hvad er Global Variable Detector Extension?
Global Variable Detector Extension er en Chrome-udvidelse udviklet af James Mortensen, og dens hovedfunktion er "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…".
Udvidelsesskærmbilleder
Download Global Variable Detector Extension-udvidelses-CRX-fil
Download Global Variable Detector Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Global Variable Detector Extension |
ID | dhkefkbgdempfmmdphonngolemioddnm |
Officiel URL | https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm |
Beskrivelse | This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser… |
Filstørrelse | 7.6 KB |
Antal Installationer | 88 |
Nuværende Version | 0.1 |
Senest Opdateret | 2020-06-15 |
Udgivelsesdato | 2020-06-14 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | James Mortensen |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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." } } |