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文件
下载Global Namespace Pollution扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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"
} | |