Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

什么是Feature Flags?

Feature Flags是由Balwant Singh开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension to manage Feature Flags in supported web apps”。

扩展截图

screenshot

下载Feature Flags扩展crx文件

下载Feature Flags扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
官方URL https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
简介 Chrome Extension to manage Feature Flags in supported web apps
文件大小 13.68 KB
安装次数 161
当前版本 1.1
更新时间 2020-09-30
上架时间 2020-08-11
评分 5.00/5 共1次评分
开发者 Balwant Singh
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/phenixcoder/feature-flags-chrome-plugin
帮助页面URL https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
支持的语言 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
}