X / Twitter Feature Flags
Modifies feature flags on X.com / Twitter.com
什么是X / Twitter Feature Flags?
X / Twitter Feature Flags是由Yaroslav Nazarov开发的Chrome扩展程序,该扩展的主要功能是“Modifies feature flags on X.com / Twitter.com”。
扩展截图
下载X / Twitter Feature Flags扩展crx文件
下载X / Twitter Feature Flags扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | X / Twitter Feature Flags |
ID | phioeneleonlckednejcmajbkmhhiepm |
官方URL | https://chromewebstore.google.com/detail/x-twitter-feature-flags/phioeneleonlckednejcmajbkmhhiepm |
简介 | Modifies feature flags on X.com / Twitter.com |
文件大小 | 87.57 KB |
安装次数 | 572 |
当前版本 | 3.0.0 |
更新时间 | 2023-09-17 |
上架时间 | 2023-02-20 |
评分 | 4.33/5 共3次评分 |
开发者 | Yaroslav Nazarov |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/yaroslav-n/x-feature-flags |
帮助页面URL | https://twitter.com/512x512 |
隐私政策页面URL | https://www.freeprivacypolicy.com/live/3b9fb73e-52c4-4577-82e1-eb9358f1fdce |
支持的语言 | 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\/*" ] } ] } |