Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

Feature Flags là gì?

Feature Flags là một tiện ích mở rộng Chrome được phát triển bởi Balwant Singh, và tính năng chính của nó là "Chrome Extension to manage Feature Flags in supported web apps".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Feature Flags

Tải xuống các tệp mở rộng Feature Flags dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Feature Flags Feature Flags
ID hmflgmhoghcbmckbbgahfmklegllkggn
URL Chính Thức https://chromewebstore.google.com/detail/feature-flags/hmflgmhoghcbmckbbgahfmklegllkggn
Mô tả Chrome Extension to manage Feature Flags in supported web apps
Kích Thước Tệp 13.68 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-09-30
Ngày Phát Hành 2020-08-11
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Balwant Singh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/phenixcoder/feature-flags-chrome-plugin
URL Trang Trợ Giúp https://github.com/phenixcoder/feature-flags-chrome-plugin/issues
Ngôn Ngữ Được Hỗ Trợ 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
}