X / Twitter Feature Flags
Modifies feature flags on X.com / Twitter.com
Qu'est-ce que X / Twitter Feature Flags ?
X / Twitter Feature Flags est une extension Chrome développée par Yaroslav Nazarov, et sa fonction principale est "Modifies feature flags on X.com / Twitter.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension X / Twitter Feature Flags
Téléchargez les fichiers d'extension X / Twitter Feature Flags 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
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.
Informations de Base sur l'Extension
Nom | X / Twitter Feature Flags |
ID | phioeneleonlckednejcmajbkmhhiepm |
URL Officiel | https://chromewebstore.google.com/detail/x-twitter-feature-flags/phioeneleonlckednejcmajbkmhhiepm |
Description | Modifies feature flags on X.com / Twitter.com |
Taille du Fichier | 87.57 KB |
Nombre d'Installations | 572 |
Version Actuelle | 3.0.0 |
Dernière Mise à Jour | 2023-09-17 |
Date de Publication | 2023-02-20 |
Évaluation | 4.33/5 Total 3 Évaluations |
Développeur | Yaroslav Nazarov |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/yaroslav-n/x-feature-flags |
URL de la Page d'Aide | https://twitter.com/512x512 |
URL de la Page de Politique de Confidentialité | https://www.freeprivacypolicy.com/live/3b9fb73e-52c4-4577-82e1-eb9358f1fdce |
Langues Prises en Charge | 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\/*" ] } ] } |