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 อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}