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
Eメール [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
}