Window Shopper: log any page's globals
Count & list all page-defined global variables
Qu'est-ce que Window Shopper: log any page's globals ?
Window Shopper: log any page's globals est une extension Chrome développée par https://rileyjshaw.com, et sa fonction principale est "Count & list all page-defined global variables".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Window Shopper: log any page's globals
Téléchargez les fichiers d'extension Window Shopper: log any page's globals 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
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
Informations de Base sur l'Extension
Nom | Window Shopper: log any page's globals |
ID | mhfpgolappjpepejmfpomfpemdidpkng |
URL Officiel | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng |
Description | Count & list all page-defined global variables |
Taille du Fichier | 36.42 KB |
Nombre d'Installations | 15 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2016-05-25 |
Date de Publication | 2016-05-24 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | https://rileyjshaw.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/rileyjshaw/window-shopper |
URL de la Page d'Aide | https://github.com/rileyjshaw/window-shopper/issues |
Langues Prises en Charge | 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 } ] } |