Feature Toggle Extension

Helps you working with feature toggles

What is Feature Toggle Extension?

Feature Toggle Extension is a Chrome extension developed by Jonathan Fernández, and its main feature is "Helps you working with feature toggles".

Extension Screenshots

screenshot

Download Feature Toggle Extension Extension CRX File

Download Feature Toggle Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
Official URL https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
Description Helps you working with feature toggles
File Size 32.71 KB
Installation Count 43
Current Version 1.3
Last Updated 2021-10-30
Publish Date 2020-09-15
Rating 4.88/5 Total 8 Ratings
Developer Jonathan Fernández
Email [email protected]
Payment Type free
Extension Website https://github.com/Jonathan-JFR/FeatureToggleExtension
Supported Languages 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
}