X / Twitter Feature Flags

Modifies feature flags on X.com / Twitter.com

Cos'è X / Twitter Feature Flags?

X / Twitter Feature Flags è un'estensione di Chrome sviluppata da Yaroslav Nazarov, e la sua funzione principale è "Modifies feature flags on X.com / Twitter.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione X / Twitter Feature Flags

Scarica i file di estensione X / Twitter Feature Flags 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

                        This extension can unlock hidden features in the web version of X / Twitter.

Before a new feature gets released to all users, it usually becomes accessible to the developers and testers first. This is done using  "feature flags" - a mechanism that can turn certain features on or off for every account. "Secret Twitter Features" allows you to change those "flags" for your account, allowing you to try almost any feature that was added to the code.

To change feature flags, find "Features" item in the left menu in X app.                    

Informazioni di Base sull'Estensione

Nome X / Twitter Feature Flags X / Twitter Feature Flags
ID phioeneleonlckednejcmajbkmhhiepm
URL Ufficiale https://chromewebstore.google.com/detail/x-twitter-feature-flags/phioeneleonlckednejcmajbkmhhiepm
Descrizione Modifies feature flags on X.com / Twitter.com
Dimensione del File 87.57 KB
Conteggio Installazioni 572
Versione Corrente 3.0.0
Ultimo Aggiornamento 2023-09-17
Data di Pubblicazione 2023-02-20
Valutazione 4.33/5 Totale 3 Valutazioni
Sviluppatore Yaroslav Nazarov
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/yaroslav-n/x-feature-flags
URL della Pagina di Aiuto https://twitter.com/512x512
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/3b9fb73e-52c4-4577-82e1-eb9358f1fdce
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "X \/ Twitter Feature Flags",
    "manifest_version": 3,
    "version": "3.0.0",
    "description": "Modifies feature flags on X.com \/ Twitter.com",
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/twitter.com\/",
        "https:\/\/x.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/twitter.com\/*",
            "https:\/\/x.com\/*"
        ]
    },
    "icons": {
        "16": "assets\/icons\/16.png",
        "32": "assets\/icons\/32.png",
        "48": "assets\/icons\/48.png",
        "128": "assets\/icons\/128.png"
    },
    "background": {
        "service_worker": "lib\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/ui.html",
                "assets\/icons\/tab_icon.svg",
                "assets\/icons\/tab_icon_dark_theme.svg",
                "lib\/ui.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/x.com\/*"
            ]
        }
    ]
}