Twitter Feature Switch Enabler
Enables *all* hidden Twitter feature switches.
Qu'est-ce que Twitter Feature Switch Enabler ?
Twitter Feature Switch Enabler est une extension Chrome développée par https://uwueviee.live, et sa fonction principale est "Enables *all* hidden Twitter feature switches.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Twitter Feature Switch Enabler
Téléchargez les fichiers d'extension Twitter Feature Switch Enabler 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 for Chrome/Chromium enables all of the possible feature switches on React Twitter and I do mean *all*. I recommend adding the following switches to options (Click the extension's icon) to disable them: explore_relaunch_enabled media_minimal_image_crop_enabled An updated list of recommend disabled switches are on the extension's site.
Informations de Base sur l'Extension
Nom | Twitter Feature Switch Enabler |
ID | cgkljhejjanbhnggknpkcmoheioaohja |
URL Officiel | https://chromewebstore.google.com/detail/twitter-feature-switch-en/cgkljhejjanbhnggknpkcmoheioaohja |
Description | Enables *all* hidden Twitter feature switches. |
Taille du Fichier | 1.19 MB |
Nombre d'Installations | 12 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2021-11-20 |
Date de Publication | 2021-11-20 |
Développeur | https://uwueviee.live |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://uwueviee.live/tfse |
URL de la Page d'Aide | https://twitter.com/uwueviee |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Twitter Feature Switch Enabler", "version": "2.0", "manifest_version": 2, "description": "Enables *all* hidden Twitter feature switches.", "homepage_url": "https:\/\/uwueviee.live\/tfse\/", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": true }, "permissions": [ "storage", "*:\/\/twitter.com\/*", "*:\/\/mobile.twitter.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/twitter.com\/*", "*:\/\/mobile.twitter.com\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "browser_action": { "default_title": "TFSE", "default_popup": "popup.html" } } |