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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Twitter Feature Switch Enabler Twitter Feature Switch Enabler
ID cgkljhejjanbhnggknpkcmoheioaohja
官方網址 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"
    }
}