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" } |