Cleaner Twitter

Make Twitter UI cleaner by removing annoying pieces.

Cleaner Twitter là gì?

Cleaner Twitter là một tiện ích mở rộng Chrome được phát triển bởi Kenny_1291, và tính năng chính của nó là "Make Twitter UI cleaner by removing annoying pieces.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cleaner Twitter

Tải xuống các tệp mở rộng Cleaner Twitter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cleaner Twitter Cleaner Twitter
ID iplodopmopkmkpblangcjomcdfiidneo
URL Chính Thức https://chromewebstore.google.com/detail/cleaner-twitter/iplodopmopkmkpblangcjomcdfiidneo
Mô tả Make Twitter UI cleaner by removing annoying pieces.
Kích Thước Tệp 197 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2024-02-05
Ngày Phát Hành 2023-05-01
Nhà Phát Triển Kenny_1291
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Kenny1291/cleaner-twitter
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}