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은(는) James Mortensen에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension helps you inspect one aspect of your JavaScript code quality, the number of global variables. Click the Browser…"입니다.
확장 프로그램 스크린샷
Global Variable Detector Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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." } } |