remove-twitter-trends

Switches Twitter trending topics off

remove-twitter-trends là gì?

remove-twitter-trends là một tiện ích mở rộng Chrome được phát triển bởi Andre Alves Garzia, và tính năng chính của nó là "Switches Twitter trending topics off".

Ả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 remove-twitter-trends

Tải xuống các tệp mở rộng remove-twitter-trends 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 add-on removes the sidebar on Twitter website that contains the trending topics and who to follow sections. Many people I know have complained about mental health hazards seeing those trending topics. This add-on unlocks agency for the user as it permits them to block those items and have a cleaner Twitter experience.                    

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

Tên remove-twitter-trends remove-twitter-trends
ID pdbaomfhmpcbdabjpjfpoehhjnphdoac
URL Chính Thức https://chromewebstore.google.com/detail/remove-twitter-trends/pdbaomfhmpcbdabjpjfpoehhjnphdoac
Mô tả Switches Twitter trending topics off
Kích Thước Tệp 1.45 MB
Số Lần Cài Đặt 918
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-12-31
Ngày Phát Hành 2021-12-31
Đánh Giá 3.43/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Andre Alves Garzia
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "remove-twitter-trends",
    "description": "Switches Twitter trending topics off",
    "version": "1.0.1",
    "icons": {
        "64": "icons\/icon512.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitter.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "browser-polyfill.js",
                "mithril.js",
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options\/index.html"
    },
    "permissions": [
        "webNavigation",
        "storage"
    ]
}