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