Global Namespace Pollution
Detects and graphs the global namespace pollution
Was ist Global Namespace Pollution?
Global Namespace Pollution ist eine Chrome-Erweiterung, die von Chieffancypants entwickelt wurde, und ihr Hauptmerkmal ist "Detects and graphs the global namespace pollution".
Erweiterungsscreenshots
Global Namespace Pollution-Erweiterungs-CRX-Datei herunterladen
Laden Sie Global Namespace Pollution-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | olfjeepflfbeaecgmlphadojomeidpif |
| Offizielle URL | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
| Beschreibung | Detects and graphs the global namespace pollution |
| Dateigröße | 46.16 KB |
| Installationsanzahl | 13 |
| Aktuelle Version | 0.4 |
| Letztes Update | 2013-04-26 |
| Veröffentlichungsdatum | 2013-04-26 |
| Bewertung | 3.33/5 Insgesamt 3 Bewertungen |
| Entwickler | Chieffancypants |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/chieffancypants/NamespacePollution |
| Hilfeseite URL | https://github.com/chieffancypants/NamespacePollution/issues |
| Unterstützte Sprachen | 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"
} | |