Global Namespace Pollution
Detects and graphs the global namespace pollution
Global Namespace Pollution란 무엇입니까?
Global Namespace Pollution은(는) Chieffancypants에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects and graphs the global namespace pollution"입니다.
확장 프로그램 스크린샷
Global Namespace Pollution 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } |