Twitter Feature Switch Enabler

Enables *all* hidden Twitter feature switches.

Twitter Feature Switch Enablerคืออะไร?

Twitter Feature Switch Enabler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://uwueviee.live และคุณลักษณะหลักของมันคือ "Enables *all* hidden Twitter feature switches."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter Feature Switch Enabler

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}