Global Namespace Pollution
Detects and graphs the global namespace pollution
Hvad er Global Namespace Pollution?
Global Namespace Pollution er en Chrome-udvidelse udviklet af Chieffancypants, og dens hovedfunktion er "Detects and graphs the global namespace pollution".
Udvidelsesskærmbilleder
Download Global Namespace Pollution-udvidelses-CRX-fil
Download Global Namespace Pollution-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | olfjeepflfbeaecgmlphadojomeidpif |
| Officiel URL | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
| Beskrivelse | Detects and graphs the global namespace pollution |
| Filstørrelse | 46.16 KB |
| Antal Installationer | 13 |
| Nuværende Version | 0.4 |
| Senest Opdateret | 2013-04-26 |
| Udgivelsesdato | 2013-04-26 |
| Bedømmelse | 3.33/5 Samlet 3 Bedømmelser |
| Udvikler | Chieffancypants |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/chieffancypants/NamespacePollution |
| Hjælpeside-URL | https://github.com/chieffancypants/NamespacePollution/issues |
| Understøttede Sprog | 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"
} | |