Global Namespace Pollution
Detects and graphs the global namespace pollution
Co to jest Global Namespace Pollution?
Global Namespace Pollution to rozszerzenie Chrome opracowane przez Chieffancypants, a jego główną funkcją jest „Detects and graphs the global namespace pollution”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Global Namespace Pollution
Pobierz pliki rozszerzeń Global Namespace Pollution w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | olfjeepflfbeaecgmlphadojomeidpif |
| Oficjalny URL | https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif |
| Opis | Detects and graphs the global namespace pollution |
| Rozmiar pliku | 46.16 KB |
| Liczba instalacji | 13 |
| Aktualna Wersja | 0.4 |
| Ostatnia Aktualizacja | 2013-04-26 |
| Data Publikacji | 2013-04-26 |
| Ocena | 3.33/5 Łącznie 3 Oceny |
| Deweloper | Chieffancypants |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/chieffancypants/NamespacePollution |
| Adres URL Strony Pomocy | https://github.com/chieffancypants/NamespacePollution/issues |
| Obsługiwane Języki | 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"
} | |