Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

Wat is Feature Flags?

Feature Flags is een Chrome-extensie ontwikkeld door Balwant Singh, en de belangrijkste functie is "Chrome Extension to manage Feature Flags in supported web apps".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Feature Flags

Download Feature Flags-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
Officiële URL https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Beschrijving Chrome Extension to manage Feature Flags in supported web apps
Bestandsgrootte 13.68 KB
Aantal Installaties 161
Huidige Versie 1.1
Laatst Bijgewerkt 2020-09-30
Publicatiedatum 2020-08-11
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Balwant Singh
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/phenixcoder/feature-flags-chrome-plugin
Help Pagina-URL https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Ondersteunde Talen 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
}