Hide Verified Twitter Users

A Chrome extension that hides verified Twitter users' posts.

Hide Verified Twitter Users là gì?

Hide Verified Twitter Users là một tiện ích mở rộng Chrome được phát triển bởi sardistic, và tính năng chính của nó là "A Chrome extension that hides verified Twitter users' posts.".

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

screenshot

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

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

                        Chrome Extension: Hide Verified Posts
This Chrome extension allows you to toggle hiding verified posts on Twitter. When the extension is active, it will hide all tweets from verified users.

How to use
Install the extension in your Chrome browser.
Click on the extension icon in the toolbar to toggle between hiding and showing verified posts.
The extension will automatically update the display of tweets on the current page according to your preference (hide/show verified posts).

This is a very crude extension that sometimes produces errors, but works enough for my purposes. If you'd like to update or change any of the code, it is published on GitHub here:

https://github.com/sardistic/Hide-Verified-Twitter-Users                    

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

Tên Hide Verified Twitter Users Hide Verified Twitter Users
ID egpeogmkamgdmolhpkajgnoookedcghb
URL Chính Thức https://chromewebstore.google.com/detail/hide-verified-twitter-use/egpeogmkamgdmolhpkajgnoookedcghb
Mô tả A Chrome extension that hides verified Twitter users' posts.
Kích Thước Tệp 7.72 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-04-27
Ngày Phát Hành 2023-04-26
Đánh Giá 2.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển sardistic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.sardistic.com
URL Trang Trợ Giúp https://ko-fi.com/sardistic
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Hide Verified Twitter Users",
    "version": "1.0",
    "description": "A Chrome extension that hides verified Twitter users' posts.",
    "icons": {
        "48": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "icon.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "storage"
    ]
}