Twitter Sanitizer

Improve your Twitter experience by hiding different features.

Twitter Sanitizer là gì?

Twitter Sanitizer là một tiện ích mở rộng Chrome được phát triển bởi Hristiyan Dodov, và tính năng chính của nó là "Improve your Twitter experience by hiding different features.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Twitter Sanitizer 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

                        This extension allows you to hide different parts of Twitter.

The most notable feature is removing followers, likes and pretty much all numbers. You can also make you feed more compact by removing the action buttons (reply, retweet, like) from each tweet. However, you can still do these actions after clicking on a tweet.

Here's the full list of toggles:

- Sidebars
- Profile counters
- Profile card stats
- Post RTs and likes
- Feed post actions
- Followers you know
- Notification faces                    

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

Tên Twitter Sanitizer Twitter Sanitizer
ID amdinnnilgkcpgohiijcejpnhgngmfdl
URL Chính Thức https://chromewebstore.google.com/detail/twitter-sanitizer/amdinnnilgkcpgohiijcejpnhgngmfdl
Mô tả Improve your Twitter experience by hiding different features.
Kích Thước Tệp 29.21 KB
Số Lần Cài Đặt 176
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-06-26
Ngày Phát Hành 2017-06-25
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Hristiyan Dodov
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitter Sanitizer",
    "version": "1.1",
    "author": "Hristiyan Dodov",
    "description": "Improve your Twitter experience by hiding different features.",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "js": [
                "hider.js"
            ],
            "matches": [
                "http:\/\/twitter.com\/*",
                "https:\/\/twitter.com\/*"
            ]
        }
    ]
}