Twitter UI Customizer

Improve the customizability of your Twitter UI

Twitter UI Customizerคืออะไร?

Twitter UI Customizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ablaze|Floorp และคุณลักษณะหลักของมันคือ "Improve the customizability of your Twitter UI"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitter UI Customizer

ดาวน์โหลดไฟล์ส่วนขยาย Twitter UI Customizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Twitterのボタンの色を白黒から戻したい?
Twitterの自分向けではないボタンはいらない?
もういっそのこと、自分で色を設定したい?
そんなあなたに!
この拡張機能はTwitterのUIのカスタマイズ性を向上させます!

対応クライアント:twitter.com、Preview版TweetDeck
GitHub → https://github.com/kaonasi-biwa/Twitter-UI-Customizer/

## 実装されている機能
- 「未送信ツイートの編集」「未フォローのフォローボタン」「フォロー中のフォローボタン」「フォロー解除ボタン」「プロフィール設定」「最終決定(ログアウト時のやつなど)」のボタンについて、それぞれ枠線色・背景色・文字色を設定できる
- ツイートの下にあるボタンの順番をいじれる
- ツイートの下にあるボタンに「ブックマークに追加」「ツイートのリンクをコピー」を追加できる
- ツイートの下のボタンが横に溢れたときににスクロールバーを表示できる
- サイドバーの並び順を変更できる
- サイドバーに「リスト」「Twiter Circle」「トピック」を追加できる
- サイドバーの縦の間隔が大きくにゃっているときに、それをちっちゃくできる
- Twitterの左上・起動時のアイコンを「デフォルト」「非表示」「犬」「鳥」「カスタムアイコン(画像をアップロードできる)」から選べる
- カスタムアイコンに関しては、丸と四角から選べる
- タイムライン上のおすすめユーザーを非表示にできる
- クライアント情報を表示できる
- カスタムCSSを書くことができる

MIT License (https://opensource.org/licenses/mit-license.php)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitter UI Customizer Twitter UI Customizer
ID hpmhdmlhnppmmipefebkhkbpdcjiidmh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitter-ui-customizer/hpmhdmlhnppmmipefebkhkbpdcjiidmh
คำอธิบาย Improve the customizability of your Twitter UI
ขนาดไฟล์ 967 KB
จำนวนการติดตั้ง 2,300
เวอร์ชันปัจจุบัน 4.1.7
อัปเดตครั้งล่าสุด 2024-02-21
วันที่เผยแพร่ 2023-04-21
คะแนน 4.71/5 รวมทั้งหมด 14 คะแนน
ผู้พัฒนา Ablaze|Floorp
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.ablaze.one/privacy_policy
ภาษาที่รองรับ en,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "4.1.7",
    "default_locale": "ja",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                ".\/styles\/style-tuicSettingPage.css",
                ".\/styles\/style-polyfillForTwitter.css",
                ".\/styles\/style-tuicColor.css",
                ".\/styles\/style-tuicFeatures.css",
                ".\/styles\/style-tlui.css",
                ".\/styles\/firefox\/style-compat.css"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": true
    },
    "manifest_version": 3,
    "icons": {
        "16": "icon\/newIcon_TUIC_C_Blue.png",
        "48": "icon\/newIcon_TUIC_C_Blue.png",
        "128": "icon\/newIcon_TUIC_C_Blue.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "storage"
    ],
    "action": {
        "default_icon": {
            "16": "icon\/newIcon_TUIC_C_Blue.png",
            "48": "icon\/newIcon_TUIC_C_Blue.png",
            "128": "icon\/newIcon_TUIC_C_Blue.png"
        },
        "default_title": "Twitter UI Customizer",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/api.github.com\/*",
        "https:\/\/abs.twimg.com\/*"
    ]
}