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." } } |