Firebase access viewer
Visualize network requests to firebase services
什么是Firebase access viewer?
Firebase access viewer是由hiropon开发的Chrome扩展程序,该扩展的主要功能是“Visualize network requests to firebase services”。
扩展截图
下载Firebase access viewer扩展crx文件
下载Firebase access viewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Visualize network requests to firebase services (firestore, storage) as follows. - The badge on the icon flashes when the firebase service is accessed - Displays a list of the last 100 accesses when the icon is clicked - Click on access to firestore in the list to see the details of your query Visibility into network requests makes it easier to detect infinite loops and unwanted accesses. Devtools must be opened to use this extension.
扩展基本信息
名称 | Firebase access viewer |
ID | bjdhoepihkomdndgccgojepkhhhbhjle |
官方URL | https://chromewebstore.google.com/detail/firebase-access-viewer/bjdhoepihkomdndgccgojepkhhhbhjle |
简介 | Visualize network requests to firebase services |
文件大小 | 81.05 KB |
安装次数 | 429 |
当前版本 | 1.0 |
更新时间 | 2022-06-24 |
上架时间 | 2022-06-14 |
开发者 | hiropon |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/SonicGarden/firebase-access-viewer |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Firebase access viewer", "description": "Visualize network requests to firebase services", "version": "1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "devtools_page": "devtools.html", "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" } } |