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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    }
}