Twitter View Count Remover

A chrome extension to remove the Views count from Twitter

Twitter View Count Remover là gì?

Twitter View Count Remover là một tiện ích mở rộng Chrome được phát triển bởi MyUsernamesThis, và tính năng chính của nó là "A chrome extension to remove the Views count from Twitter".

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

screenshot
screenshot

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

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

                        Tired of seeing the new Views counter on Twitter posts? This extension finds all instances of the Views counter and hides them on any Twitter.com page, restoring the previous interface consisting of only likes, replies, and retweets.

What's new:
Fixed bug affecting extension with no usernames in whitelist
Option to move views to after likes                    

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

Tên Twitter View Count Remover Twitter View Count Remover
ID chfanlbndjhbjjbacpcjbogknncaadnc
URL Chính Thức https://chromewebstore.google.com/detail/twitter-view-count-remove/chfanlbndjhbjjbacpcjbogknncaadnc
Mô tả A chrome extension to remove the Views count from Twitter
Kích Thước Tệp 141 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2023-01-16
Ngày Phát Hành 2022-12-26
Đánh Giá 4.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển MyUsernamesThis
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to remove the Views count from Twitter",
    "version": "0.2.2",
    "manifest_version": 3,
    "name": "Twitter View Count Remover",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.twitter.com\/*",
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "pageScript.js"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}