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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
官方網址 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"
}