Feature Toggle Extension

Helps you working with feature toggles

Feature Toggle Extensionคืออะไร?

Feature Toggle Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Fernández และคุณลักษณะหลักของมันคือ "Helps you working with feature toggles"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Feature Toggle Extension

ดาวน์โหลดไฟล์ส่วนขยาย Feature Toggle Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Every time google chrome visit a website that match one of the supplied patterns, the extension will automatically add a new param to the url query string including the feature toggle.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
คำอธิบาย Helps you working with feature toggles
ขนาดไฟล์ 32.71 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2021-10-30
วันที่เผยแพร่ 2020-09-15
คะแนน 4.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Jonathan Fernández
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Jonathan-JFR/FeatureToggleExtension
ภาษาที่รองรับ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Feature Toggle Extension",
    "default_locale": "en",
    "short_name": "FTE",
    "version": "1.3",
    "icons": {
        "128": "images\/extIcon128.png"
    },
    "author": "Jonathan Fern\u00e1ndez",
    "homepage_url": "https:\/\/github.com\/Jonathan-JFR\/FeatureToggleExtension",
    "description": "Helps you working with feature toggles",
    "permissions": [
        "webRequestBlocking",
        "webRequest",
        "declarativeContent",
        "storage",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_title": "Feature Toggle Extension",
        "default_icon": {
            "16": "images\/off16.png",
            "32": "images\/off32.png",
            "128": "images\/off128.png"
        }
    },
    "options_page": "options.html",
    "manifest_version": 2
}