Cleaner Twitter

Make Twitter UI cleaner by removing annoying pieces.

Cleaner Twitterคืออะไร?

Cleaner Twitter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Kenny_1291 และคุณลักษณะหลักของมันคือ "Make Twitter UI cleaner by removing annoying pieces."

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

screenshot
screenshot
screenshot

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

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

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

                        With this extension you can hide annoying Twitter UI pieces.

*FEATURES*
- Predefined rules
- Modify and add custom CSS rules
- Predefined rules updates (no extension update required)


Source code: https://github.com/Kenny1291/cleaner-twitter                    

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

ชื่อ Cleaner Twitter Cleaner Twitter
ID iplodopmopkmkpblangcjomcdfiidneo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cleaner-twitter/iplodopmopkmkpblangcjomcdfiidneo
คำอธิบาย Make Twitter UI cleaner by removing annoying pieces.
ขนาดไฟล์ 197 KB
จำนวนการติดตั้ง 27
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2024-02-05
วันที่เผยแพร่ 2023-05-01
ผู้พัฒนา Kenny_1291
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Kenny1291/cleaner-twitter
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Cleaner Twitter",
    "description": "Make Twitter UI cleaner by removing annoying pieces.",
    "version": "0.3.2",
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "19": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "tabs",
        "webNavigation"
    ],
    "background": {
        "service_worker": "service_workers\/background.js",
        "type": "module"
    },
    "options_page": "options\/options.html",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "utils.js"
            ]
        }
    ]
}