Yet Twitter - Minimal Twitter Theme

Customize your Twitter experience

Yet Twitter - Minimal Twitter Themeคืออะไร?

Yet Twitter - Minimal Twitter Theme เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Eunjae Lee และคุณลักษณะหลักของมันคือ "Customize your Twitter experience"

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yet Twitter - Minimal Twitter Theme

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

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

                        - Do you miss the old Twitter logo?
- Would you like to mute a specific account for X days?
- Want to hide tweets from accounts with the Blue verified mark?
- Do you want to block a huge list of users?                    

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

ชื่อ Yet Twitter - Minimal Twitter Theme Yet Twitter - Minimal Twitter Theme
ID nglkbfgmfiojfiopeamadheagaiaofnb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yet-twitter-minimal-twitt/nglkbfgmfiojfiopeamadheagaiaofnb
คำอธิบาย Customize your Twitter experience
ขนาดไฟล์ 389 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2024-03-04
วันที่เผยแพร่ 2023-11-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Eunjae Lee
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/eunjae-lee/yet-twitter
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Yet Twitter - Minimal Twitter Theme",
    "version": "0.1.2",
    "description": "Customize your Twitter experience",
    "action": {
        "default_icon": ".\/assets\/icon-512.png",
        "default_popup": ".\/dist\/popup\/index.html"
    },
    "options_ui": {
        "page": ".\/dist\/options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": ".\/dist\/background\/index.mjs"
    },
    "icons": {
        "16": ".\/assets\/icon-512.png",
        "48": ".\/assets\/icon-512.png",
        "128": ".\/assets\/icon-512.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*",
                "*:\/\/*.x.com\/*"
            ],
            "js": [
                "dist\/contentScripts\/index.global.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/contentScripts\/style.css",
                "dist\/contentScripts\/injected.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}