X / Twitter Feature Flags
Modifies feature flags on X.com / Twitter.com
X / Twitter Feature Flags là gì?
X / Twitter Feature Flags là một tiện ích mở rộng Chrome được phát triển bởi Yaroslav Nazarov, và tính năng chính của nó là "Modifies feature flags on X.com / Twitter.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng X / Twitter Feature Flags
Tải xuống các tệp mở rộng X / Twitter Feature Flags dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | X / Twitter Feature Flags |
ID | phioeneleonlckednejcmajbkmhhiepm |
URL Chính Thức | https://chromewebstore.google.com/detail/x-twitter-feature-flags/phioeneleonlckednejcmajbkmhhiepm |
Mô tả | Modifies feature flags on X.com / Twitter.com |
Kích Thước Tệp | 87.57 KB |
Số Lần Cài Đặt | 572 |
Phiên Bản Hiện Tại | 3.0.0 |
Cập Nhật Lần Cuối | 2023-09-17 |
Ngày Phát Hành | 2023-02-20 |
Đánh Giá | 4.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Yaroslav Nazarov |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yaroslav-n/x-feature-flags |
URL Trang Trợ Giúp | https://twitter.com/512x512 |
URL Trang Chính Sách Bảo Mật | https://www.freeprivacypolicy.com/live/3b9fb73e-52c4-4577-82e1-eb9358f1fdce |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |