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
官方網址 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
}