Twitter Feature Switch Enabler
Enables *all* hidden Twitter feature switches.
什么是Twitter Feature Switch Enabler?
Twitter Feature Switch Enabler是由https://uwueviee.live开发的Chrome扩展程序,该扩展的主要功能是“Enables *all* hidden Twitter feature switches.”。
扩展截图
下载Twitter Feature Switch Enabler扩展crx文件
下载Twitter Feature Switch Enabler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | cgkljhejjanbhnggknpkcmoheioaohja |
| 官方URL | https://chromewebstore.google.com/detail/twitter-feature-switch-en/cgkljhejjanbhnggknpkcmoheioaohja |
| 简介 | Enables *all* hidden Twitter feature switches. |
| 文件大小 | 1.19 MB |
| 安装次数 | 12 |
| 当前版本 | 2.0 |
| 更新时间 | 2021-11-20 |
| 上架时间 | 2021-11-20 |
| 开发者 | https://uwueviee.live |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://uwueviee.live/tfse |
| 帮助页面URL | https://twitter.com/uwueviee |
| 支持的语言 | 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"
}
} | |