Window Shopper: log any page's globals
Count & list all page-defined global variables
Apa itu Window Shopper: log any page's globals?
Window Shopper: log any page's globals adalah ekstensi Chrome yang dikembangkan oleh https://rileyjshaw.com, dan fitur utamanya adalah "Count & list all page-defined global variables".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Window Shopper: log any page's globals
Unduh file ekstensi Window Shopper: log any page's globals dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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 Informasi Dasar Ekstensi
| Nama | |
| ID | mhfpgolappjpepejmfpomfpemdidpkng |
| URL Resmi | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng |
| Deskripsi | Count & list all page-defined global variables |
| Ukuran File | 36.42 KB |
| Jumlah Instalasi | 15 |
| Versi Saat Ini | 1.2.2 |
| Terakhir Diperbarui | 2016-05-25 |
| Tanggal Publikasi | 2016-05-24 |
| Penilaian | 5.00/5 Total 2 Penilaian |
| Pengembang | https://rileyjshaw.com |
| [email protected] | |
| Tipe Pembayaran | free |
| Situs Ekstensi | https://github.com/rileyjshaw/window-shopper |
| URL Halaman Bantuan | https://github.com/rileyjshaw/window-shopper/issues |
| Bahasa yang Didukung | 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
}
]
} | |