Global Namespace Pollution
Detects and graphs the global namespace pollution
Global Namespace Pollutionคืออะไร?
Global Namespace Pollution เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chieffancypants และคุณลักษณะหลักของมันคือ "Detects and graphs the global namespace pollution"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Global Namespace Pollution
ดาวน์โหลดไฟล์ส่วนขยาย Global Namespace Pollution ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
View the total namespace pollution at a glance! This can be useful when assessing your own sites and apps, and for educating your developers on the potential harm of a heavily polluted namespace. I have found it particularly useful when reverse engineering other sites as it allows you to quickly discover and browse the objects they use.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | olfjeepflfbeaecgmlphadojomeidpif |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
คำอธิบาย | Detects and graphs the global namespace pollution |
ขนาดไฟล์ | 46.16 KB |
จำนวนการติดตั้ง | 13 |
เวอร์ชันปัจจุบัน | 0.4 |
อัปเดตครั้งล่าสุด | 2013-04-26 |
วันที่เผยแพร่ | 2013-04-26 |
คะแนน | 3.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Chieffancypants |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/chieffancypants/NamespacePollution |
URL หน้าช่วยเหลือ | https://github.com/chieffancypants/NamespacePollution/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "page_action": { "default_icon": "icons\/icon16.png", "default_popup": "src\/popup.html", "default_title": "View Namespace Pollution" }, "web_accessible_resources": [ "src\/detector.js" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Detects and graphs the global namespace pollution", "background": { "page": "src\/background.html" }, "default_locale": "en", "name": "Global Namespace Pollution", "permissions": [ "chrome:\/\/favicon\/", "idle", "notifications", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "128": "icons\/icon128.png", "16": "icons\/icon16.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/content_script.js" ] } ], "manifest_version": 2, "version": "0.4" } |