Global Namespace Pollution
Detects and graphs the global namespace pollution
Apa itu Global Namespace Pollution?
Global Namespace Pollution adalah ekstensi Chrome yang dikembangkan oleh Chieffancypants, dan fitur utamanya adalah "Detects and graphs the global namespace pollution".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Global Namespace Pollution
Unduh file ekstensi Global Namespace Pollution dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | olfjeepflfbeaecgmlphadojomeidpif |
URL Resmi | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
Deskripsi | Detects and graphs the global namespace pollution |
Ukuran File | 46.16 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 0.4 |
Terakhir Diperbarui | 2013-04-26 |
Tanggal Publikasi | 2013-04-26 |
Penilaian | 3.33/5 Total 3 Penilaian |
Pengembang | Chieffancypants |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/chieffancypants/NamespacePollution |
URL Halaman Bantuan | https://github.com/chieffancypants/NamespacePollution/issues |
Bahasa yang Didukung | 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" } |