Window Shopper: log any page's globals
Count & list all page-defined global variables
What is Window Shopper: log any page's globals?
Window Shopper: log any page's globals is a Chrome extension developed by https://rileyjshaw.com, and its main feature is "Count & list all page-defined global variables".
Extension Screenshots
Download Window Shopper: log any page's globals Extension CRX File
Download Window Shopper: log any page's globals extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
                        Usage:
The extension's icon badge shows how many globals are defined on a page. Click the icon to log a list of all page-defined global variables to the console.
Licence: MIT
Project page: https://github.com/rileyjshaw/window-shopper                     Extension Basic Information
| Name |   |  
| ID | mhfpgolappjpepejmfpomfpemdidpkng | 
| Official URL | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng | 
| Description | Count & list all page-defined global variables | 
| File Size | 36.42 KB | 
| Installation Count | 15 | 
| Current Version | 1.2.2 | 
| Last Updated | 2016-05-25 | 
| Publish Date | 2016-05-24 | 
| Rating | 5.00/5 Total 2 Ratings | 
| Developer | https://rileyjshaw.com | 
| [email protected] | |
| Payment Type | free | 
| Extension Website | https://github.com/rileyjshaw/window-shopper | 
| Help Page URL | https://github.com/rileyjshaw/window-shopper/issues | 
| Supported Languages | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "List globals",
    "version": "1.2.2",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "Window Shopper",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ]
}  |  |