Feature Toggle Extension

Helps you working with feature toggles

Qu'est-ce que Feature Toggle Extension ?

Feature Toggle Extension est une extension Chrome développée par Jonathan Fernández, et sa fonction principale est "Helps you working with feature toggles".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Feature Toggle Extension

Téléchargez les fichiers d'extension Feature Toggle Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
URL Officiel https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
Description Helps you working with feature toggles
Taille du Fichier 32.71 KB
Nombre d'Installations 43
Version Actuelle 1.3
Dernière Mise à Jour 2021-10-30
Date de Publication 2020-09-15
Évaluation 4.88/5 Total 8 Évaluations
Développeur Jonathan Fernández
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Jonathan-JFR/FeatureToggleExtension
Langues Prises en Charge 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
}