Window Shopper: log any page's globals
Count & list all page-defined global variables
Window Shopper: log any page's globals là gì?
Window Shopper: log any page's globals là một tiện ích mở rộng Chrome được phát triển bởi https://rileyjshaw.com, và tính năng chính của nó là "Count & list all page-defined global variables".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Window Shopper: log any page's globals
Tải xuống các tệp mở rộng Window Shopper: log any page's globals dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Window Shopper: log any page's globals |
ID | mhfpgolappjpepejmfpomfpemdidpkng |
URL Chính Thức | https://chromewebstore.google.com/detail/window-shopper-log-any-pa/mhfpgolappjpepejmfpomfpemdidpkng |
Mô tả | Count & list all page-defined global variables |
Kích Thước Tệp | 36.42 KB |
Số Lần Cài Đặt | 15 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2016-05-25 |
Ngày Phát Hành | 2016-05-24 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://rileyjshaw.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/rileyjshaw/window-shopper |
URL Trang Trợ Giúp | https://github.com/rileyjshaw/window-shopper/issues |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |