Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

Co to jest Feature Flags?

Feature Flags to rozszerzenie Chrome opracowane przez Balwant Singh, a jego główną funkcją jest „Chrome Extension to manage Feature Flags in supported web apps”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Feature Flags

Pobierz pliki rozszerzeń Feature Flags 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

                        Chrome Extension to manage Feature Flags in supported web apps. Implement you apps with feature flags and toggle features based on your needs.                    

Podstawowe informacje o rozszerzeniu

Nazwa Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
Oficjalny URL https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Opis Chrome Extension to manage Feature Flags in supported web apps
Rozmiar pliku 13.68 KB
Liczba instalacji 161
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2020-09-30
Data Publikacji 2020-08-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Balwant Singh
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/phenixcoder/feature-flags-chrome-plugin
Adres URL Strony Pomocy https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feature Flags",
    "version": "1.1",
    "description": "Chrome Extension to manage Feature Flags in supported web apps",
    "permissions": [
        "tabs",
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/switch16.png",
            "32": "images\/switch32.png",
            "48": "images\/switch48.png",
            "128": "images\/switch128.png"
        }
    },
    "icons": {
        "16": "images\/switch16.png",
        "32": "images\/switch32.png",
        "48": "images\/switch48.png",
        "128": "images\/switch128.png"
    },
    "manifest_version": 2
}