Firebase User Changer
Extension that helps changing the firebase console url to a specific user.
Что такое Firebase User Changer?
Firebase User Changer - это расширение Chrome, разработанное Alejandro Rosas, и его основная функция - "Extension that helps changing the firebase console url to a specific user.".
Снимки экрана расширения
Скачать файл CRX расширения Firebase User Changer
Скачайте файлы расширений Firebase User Changer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension that helps changing the firebase console url to a specific user, this avoids going to the first firebase account when using firebase console links without user identifier. Основная информация о расширении
| Название | |
| ID | hifpbkhihabmonkmioehggekhokngnch |
| Официальный URL | https://chromewebstore.google.com/detail/firebase-user-changer/hifpbkhihabmonkmioehggekhokngnch |
| Описание | Extension that helps changing the firebase console url to a specific user. |
| Размер файла | 16.47 KB |
| Количество установок | 90 |
| Текущая Версия | 0.2.0 |
| Последнее Обновление | 2023-12-21 |
| Дата публикации | 2020-05-20 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Alejandro Rosas |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/alejandrorosas/firebase-user-changer |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Firebase User Changer",
"version": "0.2.0",
"description": "Extension that helps changing the firebase console url to a specific user.",
"permissions": [
"declarativeNetRequestWithHostAccess",
"storage"
],
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
},
"manifest_version": 3,
"action": {
"default_popup": "popup.html"
},
"content_security_policy": [],
"host_permissions": [
"*:\/\/console.firebase.google.com\/*",
"*:\/\/play.google.com\/*"
]
} | |