Feature Flags

Chrome Extension to manage Feature Flags in supported web apps

ما هو Feature Flags؟

Feature Flags هو إضافة Chrome تم تطويرها بواسطة Balwant Singh، والميزة الرئيسية لها هي "Chrome Extension to manage Feature Flags in supported web apps".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Feature Flags

قم بتنزيل ملفات الامتداد Feature Flags بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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
}