Global Namespace Pollution

Detects and graphs the global namespace pollution

Qu'est-ce que Global Namespace Pollution ?

Global Namespace Pollution est une extension Chrome développée par Chieffancypants, et sa fonction principale est "Detects and graphs the global namespace pollution".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Global Namespace Pollution

Téléchargez les fichiers d'extension Global Namespace Pollution au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Global Namespace Pollution Global Namespace Pollution
ID olfjeepflfbeaecgmlphadojomeidpif
URL Officiel https://chrome.google.com/webstore/detail/global-namespace-pollutio/olfjeepflfbeaecgmlphadojomeidpif
Description Detects and graphs the global namespace pollution
Taille du Fichier 46.16 KB
Nombre d'Installations 13
Version Actuelle 0.4
Dernière Mise à Jour 2013-04-26
Date de Publication 2013-04-26
Évaluation 3.33/5 Total 3 Évaluations
Développeur Chieffancypants
Type de Paiement free
Site Web de l'Extension https://github.com/chieffancypants/NamespacePollution
URL de la Page d'Aide https://github.com/chieffancypants/NamespacePollution/issues
Langues Prises en Charge 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"
}