Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

Cos'è Feature Flags?

Feature Flags è un'estensione di Chrome sviluppata da Balwant Singh, e la sua funzione principale è "Chrome Extension to manage Feature Flags in supported web apps".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Feature Flags

Scarica i file di estensione Feature Flags in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
URL Ufficiale https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Descrizione Chrome Extension to manage Feature Flags in supported web apps
Dimensione del File 13.68 KB
Conteggio Installazioni 161
Versione Corrente 1.1
Ultimo Aggiornamento 2020-09-30
Data di Pubblicazione 2020-08-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Balwant Singh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/phenixcoder/feature-flags-chrome-plugin
URL della Pagina di Aiuto https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Lingue Supportate 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
}