Firebase User Changer

Extension that helps changing the firebase console url to a specific user.

Co to jest Firebase User Changer?

Firebase User Changer to rozszerzenie Chrome opracowane przez Alejandro Rosas, a jego główną funkcją jest „Extension that helps changing the firebase console url to a specific user.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Firebase User Changer

Pobierz pliki rozszerzeń Firebase User Changer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Firebase User Changer Firebase User Changer
ID hifpbkhihabmonkmioehggekhokngnch
Oficjalny URL https://chromewebstore.google.com/detail/firebase-user-changer/hifpbkhihabmonkmioehggekhokngnch
Opis Extension that helps changing the firebase console url to a specific user.
Rozmiar pliku 16.47 KB
Liczba instalacji 90
Aktualna Wersja 0.2.0
Ostatnia Aktualizacja 2023-12-21
Data Publikacji 2020-05-20
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Alejandro Rosas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/alejandrorosas/firebase-user-changer
Obsługiwane Języki 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\/*"
    ]
}