Feature Toggle Extension

Helps you working with feature toggles

Cos'è Feature Toggle Extension?

Feature Toggle Extension è un'estensione di Chrome sviluppata da Jonathan Fernández, e la sua funzione principale è "Helps you working with feature toggles".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Feature Toggle Extension

Scarica i file di estensione Feature Toggle Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Feature Toggle Extension Feature Toggle Extension
ID oailcamkmclecbdgffdeamkknojkecjm
URL Ufficiale https://chromewebstore.google.com/detail/feature-toggle-extension/oailcamkmclecbdgffdeamkknojkecjm
Descrizione Helps you working with feature toggles
Dimensione del File 32.71 KB
Conteggio Installazioni 43
Versione Corrente 1.3
Ultimo Aggiornamento 2021-10-30
Data di Pubblicazione 2020-09-15
Valutazione 4.88/5 Totale 8 Valutazioni
Sviluppatore Jonathan Fernández
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Jonathan-JFR/FeatureToggleExtension
Lingue Supportate 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
}