Global Namespace Pollution

Detects and graphs the global namespace pollution

Vad är Global Namespace Pollution?

Global Namespace Pollution är en Chrome-tillägg utvecklad av Chieffancypants, och dess huvudfunktion är "Detects and graphs the global namespace pollution".

Tilläggsskärmbilder

screenshot

Ladda ner Global Namespace Pollution-förlängningens CRX-fil

Ladda ner Global Namespace Pollution-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
Officiell webbadress https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Beskrivning Detects and graphs the global namespace pollution
Filstorlek 46.16 KB
Antal Installationer 13
Aktuell Version 0.4
Senast Uppdaterad 2013-04-26
Publiceringsdatum 2013-04-26
Betyg 3.33/5 Totalt 3 Betyg
Utvecklare Chieffancypants
Betalningssätt free
Tilläggswebbplats https://github.com/chieffancypants/NamespacePollution
Hjälpsida URL https://github.com/chieffancypants/NamespacePollution/issues
Stödda Språk 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"
}