Feature Toggle Extension

Helps you working with feature toggles

什麼是Feature Toggle Extension?

Feature Toggle Extension是由Jonathan Fernández開發的Chrome擴展程式,該擴展的主要功能是“Helps you working with feature toggles”。

擴展截圖

screenshot

下載Feature Toggle Extension擴展crx文件

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