Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

What is Feature Flags?

Feature Flags is a Chrome extension developed by Balwant Singh, and its main feature is "Chrome Extension to manage Feature Flags in supported web apps".

Extension Screenshots

screenshot

Download Feature Flags Extension CRX File

Download Feature Flags extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
Official URL https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Description Chrome Extension to manage Feature Flags in supported web apps
File Size 13.68 KB
Installation Count 161
Current Version 1.1
Last Updated 2020-09-30
Publish Date 2020-08-11
Rating 5.00/5 Total 1 Ratings
Developer Balwant Singh
Email [email protected]
Payment Type free
Extension Website https://github.com/phenixcoder/feature-flags-chrome-plugin
Help Page URL https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Supported Languages 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
}