Global Namespace Pollution
Detects and graphs the global namespace pollution
Global Namespace Pollution क्या है?
Global Namespace Pollution Chieffancypants द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detects and graphs the global namespace pollution"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Global Namespace Pollution एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |