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
公式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
Eメール [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
}