Window Shopper: log any page's globals
Count & list all page-defined global variables
Cos'è Window Shopper: log any page's globals?
Window Shopper: log any page's globals è un'estensione di Chrome sviluppata da https://rileyjshaw.com, e la sua funzione principale è "Count & list all page-defined global variables".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Window Shopper: log any page's globals
Scarica i file di estensione Window Shopper: log any page's globals in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | mhfpgolappjpepejmfpomfpemdidpkng |
| URL Ufficiale | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng |
| Descrizione | Count & list all page-defined global variables |
| Dimensione del File | 36.42 KB |
| Conteggio Installazioni | 15 |
| Versione Corrente | 1.2.2 |
| Ultimo Aggiornamento | 2016-05-25 |
| Data di Pubblicazione | 2016-05-24 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://rileyjshaw.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/rileyjshaw/window-shopper |
| URL della Pagina di Aiuto | https://github.com/rileyjshaw/window-shopper/issues |
| Lingue Supportate | 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
}
]
} | |