Window Shopper: log any page's globals

Count & list all page-defined global variables

Was ist Window Shopper: log any page's globals?

Window Shopper: log any page's globals ist eine Chrome-Erweiterung, die von https://rileyjshaw.com entwickelt wurde, und ihr Hauptmerkmal ist "Count & list all page-defined global variables".

Erweiterungsscreenshots

screenshot

Window Shopper: log any page's globals-Erweiterungs-CRX-Datei herunterladen

Laden Sie Window Shopper: log any page's globals-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Window Shopper: log any page's globals Window Shopper: log any page's globals
ID mhfpgolappjpepejmfpomfpemdidpkng
Offizielle URL https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng
Beschreibung Count & list all page-defined global variables
Dateigröße 36.42 KB
Installationsanzahl 15
Aktuelle Version 1.2.2
Letztes Update 2016-05-25
Veröffentlichungsdatum 2016-05-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://rileyjshaw.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/rileyjshaw/window-shopper
Hilfeseite URL https://github.com/rileyjshaw/window-shopper/issues
Unterstützte Sprachen 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
        }
    ]
}