Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

Hvad er Feature Flags?

Feature Flags er en Chrome-udvidelse udviklet af Balwant Singh, og dens hovedfunktion er "Chrome Extension to manage Feature Flags in supported web apps".

Udvidelsesskærmbilleder

screenshot

Download Feature Flags-udvidelses-CRX-fil

Download Feature Flags-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
Officiel URL https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Beskrivelse Chrome Extension to manage Feature Flags in supported web apps
Filstørrelse 13.68 KB
Antal Installationer 161
Nuværende Version 1.1
Senest Opdateret 2020-09-30
Udgivelsesdato 2020-08-11
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Balwant Singh
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/phenixcoder/feature-flags-chrome-plugin
Hjælpeside-URL https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Understøttede Sprog 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
}