Global Namespace Pollution
Detects and graphs the global namespace pollution
Global Namespace Pollution là gì?
Global Namespace Pollution là một tiện ích mở rộng Chrome được phát triển bởi Chieffancypants, và tính năng chính của nó là "Detects and graphs the global namespace pollution".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Global Namespace Pollution
Tải xuống các tệp mở rộng Global Namespace Pollution dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | olfjeepflfbeaecgmlphadojomeidpif |
URL Chính Thức | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
Mô tả | Detects and graphs the global namespace pollution |
Kích Thước Tệp | 46.16 KB |
Số Lần Cài Đặt | 13 |
Phiên Bản Hiện Tại | 0.4 |
Cập Nhật Lần Cuối | 2013-04-26 |
Ngày Phát Hành | 2013-04-26 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Chieffancypants |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/chieffancypants/NamespacePollution |
URL Trang Trợ Giúp | https://github.com/chieffancypants/NamespacePollution/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } |