Global Variable Detector Extension
This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…
Qu'est-ce que Global Variable Detector Extension ?
Global Variable Detector Extension est une extension Chrome développée par James Mortensen, et sa fonction principale est "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Global Variable Detector Extension
Téléchargez les fichiers d'extension Global Variable Detector Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Global Variable Detector Extension |
ID | dhkefkbgdempfmmdphonngolemioddnm |
URL Officiel | https://chromewebstore.google.com/detail/global-variable-detector/dhkefkbgdempfmmdphonngolemioddnm |
Description | This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser… |
Taille du Fichier | 7.6 KB |
Nombre d'Installations | 88 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-06-15 |
Date de Publication | 2020-06-14 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | James Mortensen |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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." } } |